@charset "UTF-8";
body {
	font: 12px/1.5 Verdana, Arial, Helvetica, sans-serif;
	background: #fef5e7 url(../files/images/interface/page_background.jpg) no-repeat center top;
	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: #666666;
}
.oneColFixCtrHdr #container {
	width: 800px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	padding: 0px;
	height: 118px;
	margin: 0px;
	width: 800px;
}
.oneColFixCtrHdr #mainMenu {
	padding: 0px;
	height: 50px;
	margin: 7px 0px 0px;
	width: 800px;
	text-align: center;
}
.oneColFixCtrHdr #header h1 {
	margin: 0px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.oneColFixCtrHdr #leftColumn {
	padding: 25px 0px 0px;
	margin: 0px;
	width: 800px;
	text-align: center;
}

.oneColFixCtrHdr #leftColumn p {
}

.oneColFixCtrHdr #rightColumn {
	padding: 0px;
	margin: 20px 0px 0px;
	width: 800px;
	text-align: center;
}
.oneColFixCtrHdr #footer {
	padding: 60px 0px 20px;
	text-align: center;
	margin: 0px;
}
.oneColFixCtrHdr #footer p {
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: "Times New Roman", Times, serif;
	line-height: 1.5;
	color: #666666;
}
.oneColFixCtrHdr #clearBreak {
	padding: 0px;
	margin: 0px;
	clear: both;
}

