@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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	background-color: #000;
}
.thrColFixHdr #container {
	width: 900px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #333;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #000;
	background-image: url(media/bg.jpg);
	background-position: center 180px;
	background-repeat: no-repeat;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0px;
} 
.thrColFixHdr #header {
	background-image: url(media/headerbg.jpg);
	height: 125px;
} 
.thrColFixHdr #navigation {
	background-image: url(media/navbg.jpg);
	height: 55px;
}
.thrColFixHdr #mainContent {
	width: 700px;
	background-color: #000;
	color: #FFF;
	margin-left: 80px;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	margin-bottom: 0px;
	bottom: 0px;
	border: 1px solid #666;
} 
.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
} 
.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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;
}

