@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFF;
	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 */
	color: #006699;
}
a {
	color:#0FF;
	font-weight: bold;
}
a img {
	border: none;
}
#container {
	margin: 0;
	background: #FFF;
	width: 100%;
}
#header {
	background: #030039;
}
#header img {
	height: 120px;
	position: relative;
	left: -6%;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#navbar {
	border-top: 1px solid #050059;
	border-bottom: 1px solid #020029;
	font-size: 80%;
	background: #030039;
}
#navbar > ul > li {
	border-left: 1px solid #050059;
	border-right: 1px solid #010019;
	margin-right: 1px;
}
#navbar ul {
	margin: 0 0 0 11%;
	list-style: none;
	overflow: auto;
	position: relative;
}
#navbar li {
	float: left;
}
#navbar li a {
	display: block;
	text-decoration: none;
	padding: 10px 20px;
}
#navbar li a:hover, #navbar li a:active, #navbar li a:focus {
	background: #040049 url(mlimages/arrow2.png) no-repeat center bottom;
}
#mainContent {
	padding: 15px;
	text-align: left;
	width: 980px;
	font-size: 80%;
	margin: 0px auto;
}

#mainContent a {
	color: #006;
	font-weight: normal;
}
#mainContent h1 {
	font-size: 150%;
	padding: 0px 0px 0px 12px;
}
#mainContent table p {
	padding: 0px 0px 0px 12px;
}
#footer {
	padding: 0 10px;
	background: #030039;
	text-align: right;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 70%;
}
.noTop {
	margin-top: 0;
}
