@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #AFCFCC;
	background-image: none;
}
#container  {
	width: 780px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: thin none #CE0D03;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
}
#header  {
	text-align: center;
	border: 0px none #0000FF;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	color: #000099;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	height: auto;
}
#header h1  {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #FF0000;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
#headerlogo {
}
#navigation {
	height: 35px;
	width: 100%;
	text-align: center;
	background-color: #EEE;
	margin-bottom: 10px;
}


#mainContent  {
	background: #FFFFFF;
	border: thick double #425984;
	margin: 0px;
	padding: 20px;
}
#footer  {
	padding: 0 10px;
	background-color: #425984;
	color: #FFFFFF;
	font-size: x-small;
}
#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 */
}
.image-border {
	border: 5px double #940B01;
}
.linkcolor {
	color: #FFFF00;
}
h1 {
	text-align: center;
}
