@charset "utf-8";
body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #222039;
	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 */
	color: #FFF;
	float: left;
}
.thrColAbsHdr #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #222039;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(images/Full3.jpg);
	height: 770px;
	border-right: 2px solid #999999;
	border-left: 2px solid #000000;
	border-bottom: 2px solid #333333;
	z-index: 0;
} 


.thrColAbsHdr #header {
	height: 146px;
	width: 1000px;
	top: 0px;
	left: 0px;
	position: absolute;
} 
.thrColAbsHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0;
	position: absolute;
	top: -500px;
}
.thrColAbsHdr #sidebar1Upr {
	
	position: absolute;
	top: 160px;
	left: 14px;
	width: 195px;
	height: 227px;
	z-index: -1;
}
.thrColAbsHdr #sidebar1Lwr {
	position: absolute;
	top: 390px;
	left: 14px;
	width: 195px;
	height: 227px;
	z-index: -1;
}
.thrColAbsHdr #sidebar2 {
	top: 160px;
	width: 170px;
	height: 555px;
	left: 820px;
	position: absolute;
	margin: 0;
	z-index: -1;
}
.thrColAbsHdr #mainContent {
	width: 565px;
	height: 555px;
	top: 160px;
	left: 230px;
	position: absolute;
	margin: 0;
	z-index: -1;
}
.thrColAbsHdr #footer {
	width: 980px;
	top: 732px;
	left: 10px;
	position: absolute;
	float: right;
}
.thrColAbsHdr #copyright {
	width: 250px;
	float: left;	
} 
.thrColAbsHdr #siteDesigned {
	width: 300px;
	float: right;
	text-align: right;
}
.thrColAbsHdr #HdrInfo {
	width: 500px;
	float: right;
	text-align: right;
} 


.thrColAbsHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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: 15px;
	margin-right: 5px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-top: 15px;
	margin-right: 15px;
	margin-left: 5px;
	margin-bottom: 15px;
}
#menuBar {
	position: absolute;
	top: 107px;
	left: 2px;
	width: 1001px;
	
	}
	

a:link {
	color: #F90;
}
a:visited {
	color: #F30;
}
