@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-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;
	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: #000000;
	background-image: url(images/bkg.jpg);
	background-repeat: repeat-x;
	background-color: #FFFFCC;
}
.thrColFixHdr #container {
	width: 999px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFCC;
	margin: auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #container a {
	color: #FF3333;
	text-decoration: underline;
	font: 12px Verdana,Arial, Sans serif;
}
.thrColFixHdr #container a:hover {
	color: #000000;
}
.thrColFixHdr #header {
	background: url(images/header.jpg);
	height: 206px;
} 
.thrColFixHdr #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 20px 0 0;
	height: 205px;
	font-size: 18px;
	color: #CCCCCC;
}
.thrColFixHdr #sidebar1 {
	font-size: 12px;
	background: url(images/body-bkg.jpg) no-repeat top scroll; /* the background color will be displayed for the length of the content in the column, but no further */
	height: 283px;
	color: #FF9900;
}
.thrColFixHdr #sidebar1 #text {
	padding: 20px 590px 0 30px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #sidebar1 #form {
	padding: 250px 0 0 250px; 
	color:#330000;
}
.thrColFixHdr #sidebar1 #form p {
	padding-top: 8px;
}
.thrColFixHdr #sidebar2{
	width: 340px; /* the background color will be displayed for the length of the content in the column, but no further */
	float: left;
	background: url(images/box1.jpg) no-repeat scroll top left;
	height: 241px;
}
.thrColFixHdr #container #sidebar2 #link {
	margin: 0 0 0 50px;
}

.thrColFixHdr #container #sidebar2  p {
	padding: 60px 30px 0 40px;
	font-size: 12px;
	color: #330000;
	width: 145px;
}
.thrColFixHdr #sidebarmiddle{
	width: 326px; /* the background color will be displayed for the length of the content in the column, but no further */
	float: left;
	background: url(images/box2.jpg) no-repeat scroll top left;
	height: 241px;
}
.thrColFixHdr #container #sidebarmiddle  p {
	padding: 60px 30px 0 20px;
	font-size: 12px;
	color: #330000;
	width: 160px;
}

.thrColFixHdr #container #sidebarmiddle #link {
	margin: 17px 0 0 40px;
}
.thrColFixHdr #sidebar3 {
	width: 333px; /* the background color will be displayed for the length of the content in the column, but no further */
	float: left;
	background: url(images/box3.jpg) no-repeat;
	height: 241px;
}

.thrColFixHdr #container #sidebar3 p {
	padding: 60px 30px 0 25px;
	font-size: 12px;
	color: #330000;
	width: 160px;
}
.thrColFixHdr #container #sidebar3 #link {
	margin: 30px 0 0 40px;
}
.thrColFixHdr #footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.thrColFixHdr #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: 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: 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;
}
