@charset "utf-8";

.oneColFixCtrHdr #container {
	width: 766px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: #FFFFFF; /* default background is white but can be over-written in other sections */
}

.oneColFixCtrHdr #header {
	text-align: center; /*centers the header */
}

.oneColFixCtrHdr #menuBar {
	text-align: center;
	padding: 5px 0 5px 0;
}

.oneColFixCtrHdr #menuBar hr {
	margin: 5px 0 5px 0;
}

.oneColFixCtrHdr #menuBar span {
	padding: 0 5px; 
	font-size: 12px;
}

.oneColFixCtrHdr #mainContent {
	text-align: center;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
	background: #FF0000;
}

.oneColFixCtrHdr #footer {
	text-align: right;
	padding-top: 10px;	
}

.oneColFixCtrHdr #footer span {
	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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 12px;
}

#mainContent div.content {
	padding: 10px 10px;
	text-align: left;
}

#mainContent div {
	padding: 10px 0;
}


.right { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.left { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}



img {
	border: 0;
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

hr {
	padding: 1px;
	margin: 1px;
}


