@charset "utf-8";
body  {
	font: bold 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-color: #330000;
}
.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. */
	overflow: hidden;
} 
.thrColFixHdr #header {
	background: url(../images/landing-header.jpg);
	height: 189px;
	overflow: hidden;
} 
.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;

}
.thrColFixHdr #sidebar1 {
	font-size: 12px;
	background: url(../images/landing-bkg.jpg) no-repeat top center scroll; /* the background color will be displayed for the length of the content in the column, but no further */
	height: 785px;
	color: #FF9900;
}
.thrColFixHdr #sidebar1 #text {
	padding: 10px 590px 0 30px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #sidebar1 #form {
	padding: 240px 0 0 250px; 
	color:#330000;
}
.thrColFixHdr #sidebar1 #form p {
	padding-top: 0;
}
.thrColFixHdr  #sidebar1 #dark {
	float: left;
	background: url(../images/dark-chocolate.jpg) no-repeat left top scroll;
	margin: 3px 0 0 0;
	width: 98px;
	height: 775px;
}
.thrColFixHdr  #sidebar1 #description {
	color: #000000;
	font-size: 11px;
	width: 200px;
	position: absolute;
	z-index: 10;
	margin-top: 80px;
	margin-left: 10px;
}
.thrColFixHdr #sidebar1 #title {
	float: left;
	font-size: 14px;
	text-align: center;
	color: #CC0000;
	width: 100px;
	margin-left:4px;
	margin-top:20px;
}
.thrColFixHdr #sidebar1 #title2 {
	float: left;
	font-size: 12px;
	text-align: center;
	color: #FFFFCC;
	width: 100px;
	margin-left:4px;
	margin-top:15px;
}
.thrColFixHdr  #sidebar1 #white {
	float: left;
	background: url(../images/white-chocolate.jpg) no-repeat left top scroll;
	margin: 8px 0 0 580px;
	width: 94px;
	height: 770px;
}
.thrColFixHdr  #sidebar1 #description2 {
	color: #CCCCCC;
	font-size: 11px;
	width: 200px;
	position: absolute;
	z-index: 10;
	margin-top: 85px;
	margin-left: 795px;
}
.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;
}

