/* 

CSS Document  - DROP DOWN MENU - 1 Level

HELPERS: 
http://htmldog.com/articles/suckerfish/dropdowns/
IE 7 FIX: http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/

Watch the line height for all list, too big and the dorpdowns disapear before the mouse gets to hover over the menu
*/


/* NAVIGATION MENU */
ul#nav, ul#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.7;
	z-index: 1000;	
}

ul#nav a {
	display: block;
	text-decoration: none;
	padding: 0.22em;	
	font-size: 12px;
	font-weight: bold;
	color:#FFF;
}

ul#nav li a:hover {
	color: #CC0000;
	/*background-image:url('/media/images/menu-glow.png'); _ IE 6.0 DOES NOT ALLOW PNG TRANSPARENT FILES? */
	background-position:center;
	background-repeat: no-repeat;
}

ul#nav ul a {
	background-color: #1d1c1c;
	font-weight: normal;
	text-align: left;
}

ul#nav ul a:hover {
	color: #CC0000;
	background-image:none;
}
ul#nav li ul a { 
	font-size: 12px;
	color: #FFFFFF;
}


ul#nav li { /* top list items */
	float: left;
	padding-right: 40px;
	text-align: left;
	/* width: 12em;  width needed or else Opera goes nuts */
}
ul#nav li ul li { /* all list items */
	float: left;
	width: 14em; /* width needed or else Opera goes nuts */
	padding-right: 0px;

}


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

ul#nav li ul li { 
	border-bottom: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-left: 1px solid #CCC;
	padding-left: 5px;
}
.topdropdown {
	border-top: 1px solid #CCC;
}



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

#nav li:hover, #nav li.hover {  
     position: static;  
}  
.leveldivider{
	background-image: url('/media/images/menu-divider.gif');
	background-position: right;
	background-repeat: no-repeat;
}


