/* Layout 
==============================
*/
* { box-sizing: border-box; }
body {
	background-color: #205589;
	font-family: Tahoma,Helvetica,FreeSans,Arial,sans-serif;
}
#layout { 
	border: 1px solid #777;
	width: 900px;
	margin: 0 auto;
	padding: 0;
	background-color: white;
	box-shadow: 2px 2px 5px black;
}

#header-left {
	float: left;
	margin: 0;
	width: 175px; 
	height: 123px; 
	display: flex;
	align-items: center;
	justify-content: center;
}
#header-right {
	margin: 0;
	float: right;
	background-image: url('/images/logo_notext.png'); 
	width: 723px;
	height: 123px;
	color: white;
	text-align: center;
	font-size: 2em;
	font-weight: bold;
	text-shadow: 2px 2px 5px black;
}

#sidebar {
	width: 175px;
	margin: 0;
	padding: 0;
	float: left;
	background-color: black;
}
#sidebar-items {
	background-color: black;
	text-align: center;
}
#main {
	margin: 0;
	padding: 0 1em;
	width: 723px;
	float: right;
}
#footer {
	clear: both;
	padding: 0.5em;
	border-top: 1px solid black;
	font-size: 0.8em;
	text-align: center;
	font-style: italic;
	background-color: black;
	color: lightgreen;
}

.clearfix:after{content:"";display:table;clear:both;}

/* Fonts 
==============================
*/
body {
	font-size: 1em;
}
h1 {
	font-size: 18pt;
	margin-bottom: 0px;
}
h2 {
	font-size: 12pt;
	font-weight: bold;
	color: #206727;
}
.notop {
	margin-top: 0;
}
.nobottom {
	margin-bottom: 0;
}

/* Menu
==============================
*/
#menu {
	background-color: #0A7038;
	text-align: center;
	margin: 1em auto;
	width: 150px;
	padding: 0;
}
#menu ul { list-style: none; margin: 0; padding: 0.5em 0 1em 0; }
#menu li { margin-top: 1em; }
#menu a {
	text-decoration: none;
	color: white;
}
#menu a:hover {
	color: yellow;
}

/* Sidebar items
==============================
*/
#sidebar-items { text-align: center; }
#sidebar-items a {
	text-decoration: none;
	color: white;
	font-size: 0.8em;
}
.sidebar-item {
	margin-bottom: 1em;
}
.sidebar-item p {
	padding: 0 0.5em;
	margin: 0;
}

.image-right { float: right; margin-left: 1em; }



