@charset "utf-8";
body {
	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: #000000;
	background-image: url(images/bkgrnd.gif);
	background-repeat: repeat-x;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 75%;
	background-color: #000000;
}
#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. */
}
#header {
	background-color: #2852A5;
}
#animation {
	background-color: #214487;
}
#navigation {
	background-color: #FFFFFF;
	background-image: url(images/bkgrndNavig.gif);
	background-repeat: repeat-x;
	background-position: top;
	text-align: center;
}
h1 {
	font-size: large;
	padding-top: 8px;
}
#imageRight {
	float: right;
	margin-top: 10px;
	margin-right: 2px;
	margin-bottom: 5px;
	margin-left: 10px;
}
#navigation a {
	font-size: 1.3em;
	color: #E5E5E5;
	text-decoration: none;
	line-height: 44px;
	padding-top: 6px;
	padding-right: 11px;
	padding-bottom: 5px;
	padding-left: 11px;
	font-weight: bold;
}
#navigation a:hover {
	color: #FFFFFF;
}
#mainContent {
	padding: 0 20px;
	text-align: justify;
	line-height: 1.6em;
	background-color: #FFFFFF;
}
#imageLeft {
	float: left;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 2px;
}
#footer {
	padding: 0 10px;
	background-color: #000000;
	background-image: url(images/bkgrndFooter.gif);
	background-repeat: repeat-x;
	background-position: top;
}
#footer a {
	font-size: small;
	color: #000000;
	text-decoration: none;
	padding: 8px;
}
#footer a:hover {
	text-decoration: underline;
}


#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 */
	text-align: center;
	font-size: 75%;
	color: #FFFFFF;
}
p {
	margin: 0px;
}
