/* ********** GENERAL HEADER MENU STYLES ********** */

#navTop ul  { /* all lists */
	height:18px;
	line-height:18px;
	margin: 0;
	list-style: none;
	width:auto;
	color:#fff;
}
#navTop ul li a, #navTop ul li a:visited {color:#fff;}
#navTop ul li a:hover	{color:#fff;text-decoration:none;}

#navHome {
	padding:0;
}
#navRight {
	float:right;
}

/* ********** SPECIFIC STYLES FOR DROPDOWN MENUS ********** */

#navTop ul a {
	display: block;
	padding:0;
	color:#fff;
	text-decoration:none;
}
#navTop ul a:hover {
	text-decoration:none;
	color:#fff;
}
#navTop ul li { /* all list items */
	float: left;
	width: 209px; /* width needed or else Opera goes nuts */
	line-height:18px;
	margin : 0;
	height:25px;
	line-height:25px;
}
#navTop ul li ul { /* second-level lists */
	position: absolute;
	background-color:#9EA0A4;
	width: 220px;
	height:auto;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border-top:1px solid #000;
	border-left:1px solid #000;
	border-right:1px solid #000;
	z-index:100;
	padding:0;
}
#navTop ul li ul li
{
	border-width:0px;
	margin :0;
	padding:0;
	border-bottom : 1px solid #000;	
	width:100%;
}
#navTop ul li ul li a {
	display:block;
	width:208px;
	text-decoration:none;
	color : #fff;
	padding : 1px 2px 1px 10px;
}
#navTop ul li ul li a:hover {
	background-color:#700;
}

/** Make menus appear and disappear */

#navHome li:hover ul ul,
#navHome li:hover ul ul ul,
#navHome li.sfhover ul ul,
#navHome li.sfhover ul ul ul {
	left: -999em;
}

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

/* Stops menus freezing in Explorer 7 (I for one welcome our new Microsoft Overlords...) */
#navTop ul li:hover, #navTop ul li.sfhover {position:static;}


/* ******************** STYLE FOR TOP LEVEL OF DROPDOWN MENUS ****************** */

#navTop ul li.top
 {
	width:auto !important;
	padding:0;
	border-left:1px solid #fff;
	border-bottom:0px;
	font-size:13px;
	line-height:15px;
	height:15px;
	background-color:transparent;
} 
#navTop ul li.first
{
	border-width:0;
	margin-left:0;
} 
#navTop ul li.top a.top {
	display:block;
	width:auto !important;
	padding:0 9px;
	color:#fff;
	background-color:transparent;
}
#navTop ul li.top a.top:hover {color:#fff;text-decoration:underline;}