@charset "utf-8";
/* navigation styling */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	z-index: 20;
}

#nav a {
	display: block;
	width: auto;
	
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	color:#fff;
	font-size: 10pt;
	text-decoration: none;
	font-weight: bold;
	line-height: 36px;
	margin: 0px 10px;
	padding: 0px 20px;
}


#nav a:hover {
	display: block;
	width: auto;
	
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	color:#ccc;
	font-size: 10pt;
	text-decoration: none;
	font-weight: bold;
	line-height: 36px;
	margin: 0px 10px;
	padding: 0px 20px;
	
	background: #000;
}

#nav a img {
	margin: 0px 20px;
}

#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
}

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

#nav li ul li { /* second-level list items */
	clear: both;
	/* white-space:nowrap; nice for some things? */
}

#nav li ul a { /* second-level list items */
	width: 110px;
	background: #000 url("../images/subnav_back_tile.jpg") repeat-x top;
	color:#eee;
	font-size: 8pt;
	padding: 7px 10px;
	text-decoration: none;
	font-weight:bold;
	line-height:normal;
	z-index:1000;
}

#nav li ul a:hover { /* second-level list items */
	width: 110px;
	background: #000;
	color:#888;
	font-size: 8pt;
	padding: 7px 10px;
	text-decoration: none;
	font-weight:bold;
	line-height:normal;
	z-index:1000;
}

#nav li ul li a, #nav li ul li a:hover {
}

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


/* special widths for each dropdown */
#nav li ul#sub_mort a { /* second-level list items */
	width: 196px;
	z-index:1000;
}

#nav li ul#sub_career a { /* second-level list items */
	width: 170px;
	z-index:1000;
}