/* CSS Document */
.twoColFixLtHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color: #533700;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
} 
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background-color: #533700; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px;
	height: 100%;
	overflow: hidden;
	margin: 0px 0px 0px 10px;
}
.twoColFixLtHdr #mainContent {
	margin: 0px 0px 0px 220px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 0px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 650px;
	background-color: #000000;
}
.twoColFixLtHdr #mainProds {
	margin: 20px 0px 20px 30px;
	padding: 10px;
	height: auto;
	width: 570px;
	background-color: #2F0000;
	border: #FFFFFF thin dotted;
}
.twoColFixLtHdr #mainProds a:link {
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
}
.twoColFixLtHdr #mainProds a:hover {
	color: #FFFF00;
	text-decoration: underline;
}
#prodListTbl {
	background-color: #000000;
	background: url(images/spongeBgd.gif);
	margin-left: 8%;
}
