@charset "UTF-8";
body  {
	margin: 10px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10px;
	text-align: center;
	background-color: #000;
	background-image: url(../images/bgMain.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	color: #FFF;
}
.thrColFixHdr #container {
	width: 990px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #header {
	padding: 0px;  /* 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. */
	margin: 0px;
} 
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
	margin: 0px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px;
	padding: 0px;
	margin: 0px;
}
.thrColFixHdr #mainContent {
	padding: 0px;
	margin: 0px;
	width: 590px;
	float: left;
} 
.thrColFixHdr #footer {
	padding: 0;
	margin: 0px;
	text-align: left;
} 
.gutter {
	padding: 10px;
}
.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;
	line-height: 0px;
}
