@charset "UTF-8";
body  {
	background-image: url(images/Backgr_peas.gif);
	background-repeat: repeat;
	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;
}


.twoColFixLtHdr #container {
	width: 810px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(images/Sidebar_white_fill.gif) repeat-y;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-right: auto;
	margin-left: auto;
	height: 100%;
} 
.twoColFixLtHdr #header {
	background-image: url(images/Header_main.gif);
	background-repeat: no-repeat;
} 

.twoColFixLtHdr #header_right {
	margin-left: 195px;
	
} 



.twoColFixLtHdr #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: 0px 20;
}
.twoColFixLtHdr #sidebar1 {
	width: 170px; /* 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: url(images/Left_col_backgr.gif) no-repeat;
	margin-left: 20px;
	padding-top: 10px;
	padding-left: 10px;
	margin-top: 128px;
	float: left;
	font-size: 60%;
}
.twoColFixLtHdr #mainContent {
	margin: 0px; /* 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: 10px 20px 0px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 540px;
	float: left;
	text-align: left;
	
} 

.twoColFixLtHdr #mainContent h1, h2, h3, p, ol, ul, li{
	font: 76%, Georgia, Times, serif;
}

.twoColFixLtHdr #mainContent h1{
	color: #5C836E;
	font-size: 1.4em;
	font-weight: bold;

}

.twoColFixLtHdr #mainContent h2{
	color: #5C836E;
	font-size: 1.2em;
	font-weight: bold;

}

.twoColFixLtHdr #mainContent p{
	font-size: 0.8 ems;
	line-height: 1.6ems;

}



/*** Footer ***/

.twoColFixLtHdr #footer {
	padding: 0;
} 
.twoColFixLtHdr #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 */
	font-size: 1em;
	line-height: 1.4px;
}
.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;
}


/*** Sidebar menu ***/

.nav {
	color:#FFFFFF;
	display:block;
	position:relative;
	width:150px;
	background-image: url(images/Button_off.gif);
	text-decoration: none;
	height: 28px;
	background-repeat: no-repeat;
	padding-top: 10px;
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;
}

.nav:hover,.active {
	background-image: url(images/Button_on.gif);
	color: #FFFFFF;
	text-decoration: none;
	background-repeat: no-repeat;
}

/*** Product Boxes ***/

.product_box {
	background-color: #FFFFFF;
	text-align: center;
	width: 250px;
	border: 2px solid #FFA5AD;
	vertical-align: middle;
	padding: 4px;
}
.product_desc {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	line-height: 14px;
	padding: 4px 4px 12px;
	background-color: #FFFFFF;
}

/*** for nav 3 ***/
.nav2_td {
	text-align: center;
	padding: 4px;
	border: 1px solid #FF99CC;
}
