@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: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 85%;
	background-color: #666;
	background-image: url(../images/bg.gif);
	line-height: 150%;
}
a:link {
	color: #006;
}
a:hover {
	color: #900;
}
a:active {
	color: #333;
}
a:visited {
	color: #036;
}
.oneColFixCtr #holder {
	width: 890px; /* the auto margins (in conjunction with a width) center the page */
	margin-right: auto;
	margin-left: auto;
	background-image: url(../images/contBG.png);
	background-repeat: repeat-y;
	background-position: center top;
}
.oneColFixCtr #container {
	width: 780px; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #6DA2C1;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.oneColFixCtr #header {
	height: 146px;
	padding: 0;
}
.oneColFixCtr #mainContent {
	height: auto;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
.oneColFixCtr #mainContent h2 {
	background-color: #B5161A;
	color: #FFF;
	padding-left: 20px;
	width: 50%;
	margin-left: -20px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
}
.oneColFixCtr #mainContent p {
	background-color: #FFF;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 0px;
}
.oneColFixCtr #pagebtm {
	height: 111px;
	background-image: url(../images/footrBG.jpg);
	padding: 0;
	background-repeat: repeat-x;
	background-position: bottom;
}
.oneColFixCtr #footer {
	height: 300px;
	padding: 0;
	background-color: #036;
}
.fltrt { /* 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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
