/*NAVIGATION*/

#nav, #nav ul {
	padding:0px;
	margin:0px;
	list-style: none;
	height:25px;
	line-height:25px;
	text-align:center;

}

#nav a {
	display: block;
	width: 140px;
	text-decoration:none;
	text-transform:capitalize;
	font-size:12px;
	color:#ffffff;
}

#nav li { /* all list items */
	float: left;
	width: 140px; /* width needed or else Opera goes nuts */
		height:25px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 140px;
	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-left:140px;
	margin-top:-26px;
	width: 140px;
}

#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 */
	position:relative;
	left: 0px;
}

#home{
background-color:#b06010;
}
#ingredients{
background-color:#ba6f16;
}
#aseptic{
background-color:#d1951b;
}
#innovation{
background-color:#c37f25;
}
#about{
background-color:#755b37;
}
#contact{
background-color:#4e3f34;
}

#home li{
background-color:#b06010;
border-bottom: inset #bb6228 1px;
}

#home li ul li{
background-color:#b06010;
border-left: solid #883005 2px;
}

#ingredients li{
background-color:#ba6f16;
border-bottom: inset #c37f25 1px;
}

#ingredients li ul li{
background-color:#ba6f16;
border-left: solid #904c02 2px;
}

#aseptic li{
background-color:#d1951b;
border-bottom: inset #d7a23b 1px;
}

#aseptic li ul li{
background-color:#d1951b;
border-left: solid #a47008 2px;
}

#innovation li{
background-color:#c37f25;
border-bottom: inset #af8d4d 1px;
}

#innovation li ul li{
background-color:#c37f25;
border-left: solid #7c5a1a 2px;
}

#about li{
background-color:#755b37;
border-bottom: inset #846c4c 1px;
}

#about li ul li{
background-color:#755b37;
border-left: solid #513919 2px;
}

#contact li{
background-color:#4e3f34;
border-bottom: inset #605045 1px;
}

#contact li ul li{
background-color:#4e3f34;
border-left: solid #302012 2px;
}

#home #first{
border-top: solid #bb6228 1px;
}

#ingredients #first{
border-top: inset #c37f25 1px;
}

#aseptic #first{
border-top: inset #d7a23b 1px;
}

#innovation #first{
border-top: inset #af8d4d 1px;
}

#about #first{
border-top: inset #846c4c 1px;
}

#contact #first{
border-top: inset #605045 1px;
}

#home li:hover, #nav #home li.sfhover {
background-color:#bb6228;
}
#ingredients li:hover, #nav #ingredients li.sfhover {
background-color:#c37f25;
}
#aseptic li:hover, #nav #aseptic li.sfhover {
background-color:#d7a23b;
}
#innovation li:hover, #nav #innovation li.sfhover {
background-color:#af8d4d;
}
#about li:hover, #nav #about li.sfhover {
background-color:#846c4c;
}
#contact li:hover, #nav #contact li.sfhover {
background-color:#605045;
}