#nav,
#nav ul {
	list-style: none;
	margin: 0;
	padding: 0px;
	width: 775px;
	height: 32px;
	padding: 0px;
	z-index: 1000;
	/* the next two properties are necessary so nav items will overlay on top of any google map implementation */
	/*position: relative;
	z-index: 10;*/
}

#nav img { border: none; }

#nav a {
	display: block;
	text-decoration: none;
}		

#nav a:hover,
#nav li:hover a,
#nav li.over a,
#nav li.on a   {
	color: #0065A5;
}		

#nav li {
	float: left;
}

#nav li:hover,
#nav li.sfhover {
	/* the following (seemingly) fixes sticky suckerfish drop-down menus in IE7 */
	position: static;
}

#nav li ul {
	position: absolute;
	left: -99999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin: 0;
	width: 200px;
}


#nav li ul li {
	clear: both;
	margin: 0;
}

#nav li ul a {
	background-color: transparent !important;
	background-position: top left;
	background-repeat: repeat;
	border-bottom: solid 1px #FFF;
	float: left;
	width: 200px; /* if want to set a specific, universal width for all subnavs set this */
	margin: 0;
	padding: 5px;
	font-size: 75%;
}		

#nav li ul a:hover {
	background: none !important;
	color: #FFF;
}

#nav li:hover	a,		
#nav li.on a					{ background-color: #546B9D; }
/*#nav li ul a					{ background-image: url(../images/nav/background_tile.png) !important; }*/
#nav li ul a					{ background-color: #E0E1E1 !important; }
#nav li ul li a:hover		{ background-color: #5991C2 !important; }

#nav li:hover ul, #nav li.over ul { /* lists nested under hovered list items */
	left: auto;
}