@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: #666;
	background-color: #edf2f6;
	background-image: url(images/background.jpg);
	background-repeat: repeat-x;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
.oneColFixCtrHdr #container {
	width: 800px;  /* 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-color: #fff;
	background-image: url(images/banner.jpg);
	height: 311px;
}

.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
	margin-left: 36px;
	
}

.oneColFixCtrHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 195px;
	background-image: url(images/sidebar-bg.gif);
	background-repeat: repeat-y;
	padding-right: 13px;
	padding-left: 10px;
	margin-left: 10px;
}

.oneColFixCtrHdr #sidebar1 p{
	font-size: 12px;
	color: #041b3a;
	margin-left: 10px;
	
}

.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#edf2f6;
}
.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-size: 11px;
	color: #5f88b0;
	text-align: center;
}
.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-size: 11px;
	color: #5f88b0;
	text-align: center;
}

