@charset "UTF-8";/* CSS Document */#nav {	width:841px;	height:25px;	background-color: #49AA17;	margin-bottom: 15px;}#nav, #nav ul { /* all lists */	padding: 0;	margin: 0;	list-style: none;	line-height: 1;}#nav a {	display: block;	width: 140px;}#nav li { /* all list items */	float: left;	width: 140px; /* width needed or else Opera goes nuts */}#nav li a.manufacture, #nav li a.benefits, #nav li a.uses, #nav li a.purchase, #nav li a.news, #nav li a.contact { 	background-repeat: no-repeat;	height:25px;	text-indent:-3000px;}#nav li a.manufacture { /* all list items */	background-image: url(images/Manufacture.jpg);}#nav li a.benefits {	background-image: url(images/Benefits.jpg);}#nav li a.uses {	background-image: url(images/Uses.jpg);}#nav li a.purchase {	background-image: url(images/Purchase.jpg);}#nav li a.news {	background-image: url(images/News.jpg);}#nav li a.contact {	background-image: url(images/Contact.jpg);} #nav li ul { /* second-level lists */	position: absolute;	background: orange;	width: 140px;	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */}#nav li ul li {	background: #49AA17  url(images/nav_grad.jpg) no-repeat;	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */	border-bottom-width: 1px;	border-bottom-style: solid;	border-bottom-color: #99CC00;	}#nav li ul li a {	width: 130px;	height: 20px;	padding-top: 5px;	padding-bottom: 5px;	padding-left: 10px;	font-weight: bold;	font-size: 11px;	color: #FFFFFF;	text-decoration: none;	}#nav li ul li a:hover {	background: #ABCE33  url(images/nav_grad_hover.jpg) no-repeat;	width: 130px;	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */}#nav li ul ul { /* third-and-above-level lists */	margin: -30px 0 0 140px;}#nav li ul ul li a:hover { /* third-and-above-level lists */		}#nav li:hover ul ul, #nav li.sfhover ul ul {	left: -999em;}#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */	left: auto;}