@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: #236ba6;
	background-image: url(Images/background.jpg);
	background-repeat: repeat-x;
	font-family: Tahoma, Verdana, Arial;
	font-size: 14px;
	list-style-image: url(Images/arrow.gif);
}
.oneColFixCtrHdr #container {
	width: 862px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background-image: url(Images/banner.jpg);
	height: 200px;
	width: 862px;
	padding-top: 20px;
	padding-left: 180px;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Tahoma, Verdana, Arial;
	font-size: 20px;
	color: #236BA6;
	font-style: normal;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
	padding-top: 20;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px;
	background-color: #d8ebef;
	text-align: center;
}
.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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #236BA6;
}
.oneColFixCtrHdr #footer a {
	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-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #236BA6;
}

