@charset "utf-8";
body {
	background-color: #244366;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
a {
	text-decoration:none;
	color:#105CB6;
}
a:hover {
	text-decoration:underline;
}
#bodycontainer {
	width:800px;
	background: #333333;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/* border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */

}
#header {
	width: inherit;
	margin: 0 auto;
	background-color:#e2e2c;
}
#logo {
	padding: 10px 10px;
	width: 780px;
}
.navbar {
	clear:both;
	position:relative;
	height:24px;
	line-height:16px;
	color:#333;
	overflow:hidden;
	margin:0 auto;
	background:#666;
	border-top:solid 1px #aaa;
	border-bottom:solid 1px #aaa;
}
.navbar ul li div {
	text-decoration:none;
	padding:6px 9px;
	float:left;
}
.navbar ul {
	display:inline;
	padding:0;
	margin:0;
	float:left;
	font:bold 11px Arial, sans-serif;
	color:#069;
}
.navbar ul li {
	display:inline;
	font:bold 11px Arial, sans-serif;
	line-height:12px;
}
.navbar ul li a {
	text-decoration:none;
	padding:6px 9px;
	float:left;
}
.navbar ul li a {
	color:#fff;
	padding:6px 10px;
	background:#666;
}
.navbar ul li a:hover {
	text-decoration:none;
	padding:6px 9px;
	color:#fff;
	background:#000;
	border-left:1px solid #000;
	border-right:1px solid #000;
}
.navbar ul li a.active {
	padding:6px 9px;
	color:#fff;
	background:#6b99c3;
	background-position:-1px -138px;
	border-left:1px solid #6b99c3;
	border-right:1px solid #6b99c3;
}
#mainContent {
	padding: 10pm 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 780px;
	margin: 0 auto;
	background-color:#e2e2c;
}
#footer {
	font:10px Veranda;
	color:#fff;
	cursor: default;
	text-align: center;
}
.footer a {
	color: #fff;
	text-decoration: none;
}
.footer a:hover {
	text-decoration: underline;
}