div#navigation {
	width: 100%;
	height: 25px;
	background: #A19263;
	position: relative;
	z-index: 100;
	clear: both;
}

#nav_wrap {
	width: 1035px;
	margin: 0px auto 0px auto;
	clear: both;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	font-size: 11px;
	text-align: left;
	}

#nav a {
	display: block;
	padding: 7px 20px 7px 20px;
	color: white;
	text-decoration: none;
}

#nav li a:hover {
	background: #D9DBC2;
	color: #A19263;
}

#nav li li:hover ul {
  background: #D9DBC2;
}

#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
	background-color: #A19263;
	padding: 0px 12px 0px 12px;
}

#nav li.fly {
	background: url('../images/fly.gif') no-repeat right;
}

#nav li ul li { /* all list items */
	float: left;
	width: 210px;
	padding: 0px; /* width needed or else Opera goes nuts */
}

#nav li:hover > a {
  background:#D9DBC2; 
  color:#A19263;
}


#nav li ul { /* second-level lists */
	position: absolute;
	background: #A19263;
	width: 210px;
	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: -2.2em 0 0 210px;
}

#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;
}