/* Based partially on Matthew Carroll's keyboard accessible flavor of Suckerfish 
 * Dropdowns by Patrick Griffiths and Dan Webb. 
 * http://carroll.org.uk/sandbox/suckerfish/bones2.html
 */

/* ----[ LINKS ]----*/

/* all menu links */
#subMenusContainer a{
	display:block;
	padding:0 0px;
	width:146px;
	height:27px;
	text-indent:-9999px;
}

/* ----[ OLs ULs, LIs, and DIVs ]----*/

/* Submenu Outer Wrapper - each submenu is inside a div with this class - javascript users only */
.smOW{ 
	display:none; 
	position: absolute; 
	overflow:hidden; 
	/*the 2px left & right padding lets you have a 1px border 
	  on the ul or ol inside since overflow is set to hidden*/
}
/*.smOW ul {
	border-top: 1px solid #ffffff;
}*/
.smOW li {
	_margin-top: -1px;
}
.smOW li.dnv01 {
	_margin-top: 0;
}

/* --------------------------[ The below is just for non-javscript users ]--------------------------*/

#navi li ul { /* second-level lists */
	position: absolute;
	margin-left: -10000em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin-top:2.2em;
}
