@charset "UTF-8";
body {
	font: 12px/17px Verdana, Arial, Helvetica, sans-serif;
	background: #000033;
	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 */
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
	padding: 0px;
}
#header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0px;
}
#headerul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	text-decoration: none;
	float: right;
	width: 100%;
	display: block;
	border-bottom: thin solid #990000;
	border-top: thin solid #990000;
	background: repeat-x;
}
#headerul li {
	font: normal 12px Verdana, Arial, Helvetica, sans-serif;
	color: #000066;
	text-decoration: none;
	padding: 0px;
	border-top: thin none #0FB6DA;
	border-right: thin none #0FB6DA;
	border-bottom: thin none #0FB6DA;
	border-left: thin none #0FB6DA;
	float: right;
}
#headerul a {
	color: #990000;
	text-decoration: none;
	padding: 3px 15px;
	display: block;
	border-right: 0.5px none #990000;
	border-left: 0.5px none #990000;
	border-top-style: none;
	border-bottom-style: none;
}
#header a:hover {
	color: #FFFFFF;
	background: #000066;
	display: block;
	padding: 3px 15px;
}
#mainContent { /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	padding: 40px 70px 30px;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	border-top: thin none #990000;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-right-color: #990000;
	border-bottom-color: #990000;
	border-left-color: #990000;
}
h2 {
	font: 18px/20px Verdana, Arial, Helvetica, sans-serif;
	color: #000066;
}
h3 {
	color: #000066;
	font: normal 14px/18px Verdana, Arial, Helvetica, sans-serif;
}
#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 10px 60px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #990000;
}
h1 {
	font: 22px/25px Verdana, Arial, Helvetica, sans-serif;
	color: #000066;
}
