@charset "utf-8";
body  {
	font-family: Arial;
	font-size: 12px;
	background: #0d1518;
	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 */
	
}
.thrColFixHdr #container { 
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	color: #ffffff;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #header {
	width: 100%;
	background-image: url(header-bg.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	text-align: center;
} 
.thrColFixHdr #mainBox {
  margin: 0 auto;
  width: 837px;
  min-height: 700px;
}
.thrColFixHdr #mainContent {
	margin: 0;
	margin-top: 10px;
	margin-right: 10px;
	float: left; 
	width: 361px;
	min-height: 700px;
	padding-right: 20px; 
	color: #ffffff;
}

.thrColFixHdr #sidebar1 {
	float: left;
	margin: 0;
	width: 201px;
	min-height: 682px;
	margin-top: 24px;
	padding-top: 17px;
	padding-left: 14px;
	padding-right: 14px;
	background-image: url(_mainContent.png);
	background-repeat: repeat-x;
	background-color: #0d1518;
}
.thrColFixHdr #sidebar2 {
	float: right; 
	width: 198px;
	margin-top: 16px;
	min-height: 682px;
	margin-top: 15px;
	color: #fff;
}
.thrColFixHdr #sidebar2 div.sidebar2Box {
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.thrColFixHdr #sidebar2 div.sidebar2Box a.link1{
	float: right;
	min-width: 88px;
	padding-left: 15px;
	line-height: 21px;
	background-image:url(_bottom_link.gif);
	background-repeat: no-repeat;
	background-position: left top;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 11px;
}

.thrColFixHdr #sidebar2 div.sidebar2Box a.link1:hover{
	float: right;
	min-width: 88px;
	padding-left: 15px;
	line-height: 21px;
	background-image:url(_bottom_link02.gif);
	background-repeat: no-repeat;
	background-position: left top;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 11px;
}
 
.thrColFixHdr #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #2A353B;
	width: 100%;
	min-height: 77px;
	text-align: center;
} 
.thrColFixHdr #footer div {
	margin: 0 auto;
	width: 837px;
	padding: 10px 68px 7px 68px;
	font-family: Verdana;
	font-size: 10px;
	color: #CCCCCC;
	padding-top: 20px;
	text-align: left;
}
.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;
}
