@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-image: url(img_bg.jpg);
	background-position: -10px -10px;
	background-repeat: repeat;
	background-attachment: fixed;
}
.oneColFixCtrHdr a:link {
	color: #666666;
	text-decoration: none;
}
.oneColFixCtrHdr a:visited {
	color: #666666;
	text-decoration: none;
}
.oneColFixCtrHdr a:hover {
	color: #999999;
	text-decoration: underline;
}
.oneColFixCtrHdr a:active {
	color: #666666;
	text-decoration: none;
}
.oneColFixCtrHdr img {
	border: 0px #ffffff solid;
}
.oneColFixCtrHdr a img:hover {
	border: 2px #000000 solid;
}

.oneColFixCtrHdr #container {
	width: 748px;  /* using 20px less than a full 768px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-height: 560px;
}
.oneColFixCtrHdr .mainpage {
	background-image: url(img_banner_mainpage.gif);
	background-position: top;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr .subpage {
	background-image: url(img_banner_subpage.gif);
	background-position: top;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr .maincontent {
	width: 440px;
}
.leftDoubleLine {
	border-left: 5px #999999 double;
	background-color: #ffffff;
	filter: alpha(opacity=75); /* for IE */
	opacity: 0.75; /* CSS3 standard */
	-moz-opacity: 0.75; /* for Mozilla */
}
.oneColFixCtrHdr .maincontent p {
	text-indent: 2em;
}
.oneColFixCtrHdr .subcontent {
	width: 550px;
}

.oneColFixCtrHdr #header {
	padding: 280px 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	border: 0px #ffffff solid;
}
.oneColFixCtrHdr #header span {
	margin: 2px 4px;
	padding: 0;
	
	background-color: #FFFFCC;
	border: 3px #993300 groove;
	display: block;
	float: left;
	height: 1.25em;
	text-align: center;
	vertical-align: middle;
	width: 4.25em;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align: center;
	font-size: x-small;
	color: #999999;
}
.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 .clearFloat {
	clear: both;
}