@charset "utf-8";
/* CSS Document */

 
body  {
	font: normal 14px "Times New Roman", Times, 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;
}
a:link {
	color: #990000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #000000;
}
a:hover {
	text-decoration: none;
	color: #CCCCCC;
}
a:active {
	text-decoration: none;
	color: #666666;
}
.thrColFixHdr #container {
	margin: 0 auto;
	height: 640px;
	width: 960px;
	padding: 0;
	background: url(../images/bg/finalBg.jpg) no-repeat left 15px;
} 
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 230px;
	margin: 190px 0px 0px 5px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 550px; /* padding keeps the content of the div away from the edges */
	margin-top: 115px;
	margin-right: 102px;
	display: inline;
}
.thrColFixHdr #mainContent {
	margin: 53px 62px 0px 0px;
	height: 345px;
	width: 588px;
	overflow: auto;
	clear: right;
	float: right;
	display: inline;
	text-align: center;
} 
.thrColFixHdr #footer {
	margin: 25px 0px 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 0px 0px 3px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: left;
	float: left;
	width: 250px;
	clear: left;
}
.thrColFixHdr #footer2 {
	margin: 127px 0px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: right;
	float: right;
	width: 200px;
	clear: right;
	padding-right: 3px;
}
.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;
}
