@charset "utf-8";
/* General Style CSS Document */

html, body, #container {
	min-height: 100%; /*Sets the min height to the height of the viewport.*/
	width: 100%;
	height: 100%; /*Effectively, this is min height for IE5+/Win, since IE wrongly expands an element to enclose its content. This mis-behavior screws up modern browsers*/
	margin: 0;
	padding: 0;
	background-color:#B8860B;
	color: #333;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
    }
html>body #container {
    height: auto; /*this undoes the IE hack, hiding it from IE using the child selector*/
    }
td {
	text-align:left;
	}
a {
	text-decoration:underline;
	color:#006837;
	}
a:focus, a:active {
	outline:none
	}
a:hover {
	text-decoration:none;
	color:#006837;
	outline:none;
	}
h1 {
	color:#006837;
	font-size: 20px;
	}
h1 a {
	text-decoration: none;
}
h1 a:hover {
	background-color:#FFCC33;
	text-decoration:none;
}
h2 {
	color:#000000;
	font-size: 18px;
	}
h2 a {
	text-decoration:none;
	}
h2 a:hover {
	background-color:#FFCC33;
	text-decoration:none;
	}
h3 {
	color:#000000;
	font-size: 16px;
	}
h3 a {
	text-decoration:none;
	}
h3 a:hover {
	background-color:#FFCC33;
	text-decoration:none;
	}
#container {
	position: absolute;
	top: 0px;
	left: 0;
    }
#main {
	height: auto;
	padding: 0;
	padding-bottom: 3em;   /*Keeps content above footer. Originally used margin, but a bug in Opera7 seemed
                           to add spurious margin, pushing the footer beyond the viewport even with short content. */
	width: 960px;
	/*min-width: 760px;
    max-width: 984px;*/
    margin: 0 auto;
	background-image:url(../images/bg.png);
	background-repeat: repeat-y;
	padding-left:0px;
    }
#footerwrap {
	position: absolute;
	bottom: 0;
	width: 100%;
	/*background-color:#6CBF4A;*/
	background-color:#669933;
	height: 43px;
    }
#footer {
    width: 800px;
    /*min-width: 760px;
    max-width: 984px;*/
    margin: 0 auto;
	margin-top:10px;
	margin-bottom:10px;
	text-align:center;
	color:#FFFFFF;
    }
#footer a {
	text-decoration:underline;
	color:#CCFF99;
	}
#footer a:hover {
	text-decoration:none;
	color:#CCFF99;
	}
#productsMenu {
	background-image:url(../images/side-bg.png);
	background-repeat:repeat-x;
	padding:6px;
	min-height: 312px;
	width: 100%;
	margin-left: 1px;
	text-align: left;
	}
#productsMenu p {
	padding-bottom:0px;
	margin-bottom:0px;
	margin-top:6px;
	padding-top:0px;
	padding-left:6px;
	}
#productsMenu a:hover, #productsMenu a.active {
	background-color:#FFCC33;
	text-decoration:none;
	}
#productsMenu a.sub {
	text-decoration:none;
	margin-left:15px;
	}
#productsMenu a.sub:hover, #productsMenu a.subActive {
	background-color:#FFCC33;
	text-decoration:none;
	margin-left:15px;
	}
#subscribe {
	padding:6px;
	width: 100%;
	border: thin solid #CC9900;
	margin-bottom: 10px;
	text-align: left;
	}
#subscribe p {
	padding-bottom:0px;
	margin-bottom:0px;
	margin-top:6px;
	padding-top:0px;
	padding-left:6px;
	text-align: left;
	}

/* Product Images */

.toggleopacity img{
-moz-opacity: 0.5;
}
.toggleopacity:hover img{
-moz-opacity: 1;
}
