@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #EFEFEF;
	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;
}
.oneColFixCtrHdr #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #EFEFEF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #EFEFEF; 
	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: 0;
	background-image:url(images/Header.gif);
	background-repeat: no-repeat;
	background-position: right;
	height: 119px;
}
.oneColFixCtrHdr #header h1 {
	margin-left: -9000px
}
.oneColFixCtrHdr #header p {
	margin-left: -9000px;
}
.oneColFixCtrHdr #Nav {
	background-image:url(images/Nav.gif);
	background-repeat: no-repeat;
	background-position: top left;
	height: 31px;
	margin: 0;
	padding: 0;
	}
.oneColFixCtrHdr #Nav h1 {
	padding: 0 20px;
	margin: 0;
	}
#Nav ul{
	list-style:none;
	position: relative;
	margin: 0 auto;
	padding: 6px 0px;
	width: 500px;
}
 #Nav li{
	float: left;
	padding: 0 auto;
	margin: 0;
	width: 125px;
}

#Nav a{
	padding: 0 10px;
	font-size:16px;
	line-height: 20px;
	text-decoration:none;
	text-align: center;
	font-family:Georgia, "Times New Roman", Times, serif;
	color: #FFFFFF;
	display:block;
}
#Nav a:hover{
	color: #CCCCCC;
}
#Nav a:active{
	color: #666666;
	
}

	
.oneColFixCtrHdr #mainContent {
	padding: 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0;
	background-image: url(images/Body-BG.gif);
	background-repeat: repeat-y;
	background-position: left;
}
.oneColFixCtrHdr #mainContent h1 {
	padding: 10px 20px;
	margin: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	}
.oneColFixCtrHdr #mainContent p {
	padding: 7px 20px;
	margin: 0;
	font-size: 12px;
	line-height: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;

	}
#mainContent table {
	padding: 5px 5px;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin: 0;
	background-image:url(images/Footer.gif);
	background-repeat: no-repeat;
	background-position: bottom;
	height: 26px;
}
.oneColFixCtrHdr #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: 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	
}