@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #666666;
	background-image:url('images/bg.png');
	background-repeat: repeat-y;
}
.oneColFixCtrHdr #container {
	width: 770px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	background-color: #FFFFFF;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.oneColFixCtrHdr #header {
	background-color: #333333;
	margin: 0px;
	padding: 0px;
	color: #FFFFFF;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	font-size: 20px;
	color: #FFFFFF;
}
.oneColFixCtrHdr #header h2 {
	margin: 0;
	padding-bottom: 0px;
	font-size: 14px;
	font-style: italic;
	color: #FFFFFF;
	padding-right: 10px;
}


.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	font-size: .9em;
	text-align: center;
}
.oneColFixCtrHdr #mainContent h1 {
	margin: 0;
	padding-bottom: 5px;
	font-size: 1em;
	font-style: normal;
	padding-right: 10px;
	color: #060;
	padding-top: 5px;
	text-align: center;
}


.oneColFixCtrHdr #mainContent h2 {
	margin: 0;
	padding-bottom: 5px;
	font-size: 14px;
	font-style: italic;
	padding-right: 10px;
	color: #FFFFFF;
	background-color: #333333;
}
.oneColFixCtrHdr #mainContent p {
	margin: 0;
	padding-bottom: 15px;
	font-size: 1em;
	font-style: normal;
	padding-right: 10px;
	color: #000000;
	padding-top: 0px;
	text-align: center;
}

.oneColFixCtrHdr #mainContent a:link {
	COLOR: #006600;
}
.oneColFixCtrHdr #mainContent a:visited {COLOR: #006600;}
.oneColFixCtrHdr #mainContent a:hover {COLOR: #006600;}
.oneColFixCtrHdr #mainContent a:active {COLOR: #006600;}

.oneColFixCtrHdr #footer {
	padding: 0 10px;
	background-color: #006600;
}
.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 */
}
.oneColFixCtrHdr #footer a:link {COLOR: #FFFFFF;}
.oneColFixCtrHdr #footer a:visited {COLOR: #FFFFFF;}
.oneColFixCtrHdr #footer a:hover {COLOR: #CCCCCC;}
.oneColFixCtrHdr #footer a:active {COLOR: #FFFFFF;}

