@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: #FFFFFF;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #000000;
}
a:hover {
	text-decoration: none;
	color: #666666;
}
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: 80px; /* padding keeps the content of the div away from the edges */
	margin-top: 70px;
	margin-right: 380px;
	display: inline;
}
.thrColFixHdr #mainContent {
	margin: 197px 62px 0px 0px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 5px;
	height: 335px;
	width: 578px;
	overflow: auto;
	clear: right;
	float: right;
	display: inline;
} 
.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: 10px 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: 105px 0px 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 3px; /* 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;
}
.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;
}
