/* The generic navbargeneric for every page that isnt the homepage.*/

#navbargeneric {
	float: left;
	width: 740px;
	height: auto;
	margin: 0px 2px 0px 20px;
	background-color: #904D02;
	text-align: left;
	font-family: arial;
}

#navbargeneric ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font-weight: bold;
}

#navbargeneric ul li img {
	display: none;
	}

#navbargeneric a {
	display: block;
	width: 90px;
	padding: 4px;
	font-size: 11px;
	text-decoration: none;
	color: #fff;
	background-color: #904D02;
}

#navbargeneric a:hover {
	color: #904D02;
	background-color: #CAB692;
}

#navbargeneric li { /* all list items */
	float: left;
	width: 92px; /* width needed or else Opera goes nuts */
}

#navbargeneric li ul { /* second-level lists */
	position: absolute;
	width: 90px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#navbargeneric li ul {
	width: 150px;
}

#navbargeneric li ul a {
	width: 150px;
	background-color: #904D02;
}
	
#navbargeneric li ul a:hover {
	color: #904D02;
	background-color: #CAB692;
}

#navbargeneric li:hover ul, #navbargeneric li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	color: #904D02;
	background-color: #CAB692;
}

#navbargeneric li#services a {
	padding-left: 10px
	}

