/* CSS Document */
/*div#nav {
	width: 918px;
	background-image: url(/images/mod/_topmenu_back_off.gif);
}*/
div#nav {
	width: 100%;
	border-left:  #fff 1px solid;
}
#nav ul {		
  	font-family: Verdana, Arial, Helvetica, sans-serif;
  	font-size: 11px;
  	font-style: normal;
  	font-weight: bold;
	margin: 0;
	padding: 0;
	display: block;
	position: relative;
	width: auto;
	height: 23px;
	z-index: 3;
	list-style: none;
}
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
}
#nav li { /* all list items */
	border-right: #fff 1px solid;
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
	font-weight: bold;	
	text-align: center;	
}
#nav li:hover {
    visibility: visible;  /* fixes sticky menus in IE7 */
}
#nav li a {
	display: block;
	width: auto;
	color: #fff;
	text-decoration: none;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 5px;
}
#nav li a.navLevel1 {
	padding-left: 5px;
	padding-right: 5px;
}
#nav li a:hover {
	display: block;
	width: auto;
	color: #fff;
	text-decoration:none;
}
#nav li ul { /* second-level lists */
	list-style: none;
	position: absolute;
	width: 17em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */	
	text-align:left;

}
#nav li ul li, #nav li ul li a, #nav li ul li a:visited {
	width: 17em; /* width needed or else Opera goes nuts */		
	text-align:left;
	background-image: none;
	background-color: #DAE2E6;
  	color: #093465;
	font-weight: normal;
	padding-right: 0px;
	border-right: none;
}
#nav li ul li {
	width: 17em;
	padding-right: 5px;
	border-bottom: solid 1px #AFB1B3;
	border-left: solid 1px #AFB1B3;
	border-right: solid 1px #AFB1B3;
}

/* the following will only be seen by IE 6 and below */
* html #nav li ul li {
	padding-right: 0px;
}

#nav li ul li a {
	width: 17em;
  	color: #093465;
	background-color: #DAE2E6;	
	background-image: none;
	padding-right:0px;
}
#nav li ul li a:hover {
	width: 17em;
	padding-right:0px;
	background: #F7F7F7;	
  color: #093465;
}
#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	background: #F7F7F7;	
  color: #093465;
}

/* this is to determine the width of the 1st level items before displaying so padding can be adjusted */
.forWidth {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
}




