/* Adopted from the sonofsuckerfish technique */
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav a {
	display: block;
	text-decoration: none;
	width: 118px;
	color: #B1B1B1;
	font-size: 16px;
	font-style: arial, non-serif;
	padding: 10px;
	
}

#nav li:hover{
	color: #FFF;
	text-decoration: none;
	background: url("images/nav-menu-on.jpg") 0 1px repeat-x;
	/* border-left: 1px solid #232323;
	border-right: 1px solid #232323;
	*/
}

#nav a:hover {
	border-bottom: 	0px solid #999;
}



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

#nav div {
	text-align: center;	
}

#nav li ul li {
	display: block;
	float: left;
	position: relative; 
	text-align: left;
}

#nav li ul li:hover{
	background: none;
	border: 0;
}


#nav li ul li a {
	display: block;
	text-decoration: none;
	width: 125px; /* adjusted for padding */
	color: #B1B1B1;
	font-size: 11pt;
	font-style: arial, non-serif;
	padding: 3px 3px 3px 10px;
	border-top: 2px solid #181818;
	background: #181818 url(images/menu-off-150.jpg) top left repeat-y;
}

#nav li ul li a:hover {
	background: #181818 url(images/left-menu-on-150.jpg) top left repeat-y;
	border-right: 1px solid #929191;
	border-bottom: 1px solid #929191;
}


#nav li ul { /* second-level lists */
	position: absolute;
	width: 150px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;

}

/* Fixes IE 7 Bug where menu would not disappear on mouse out */
#nav li:hover {background-position: 0 0;}
