/* navigation */
.nav {
	background: #316ca0 url(../images/menu-background.png) repeat-x;
	height:30px;
	font-family: Helvetica;
	z-index:100;
	letter-spacing: 1px;
	font-weight: normal;
	padding:0 0 0 0;
	margin:0 0 0 0;
	width:930px;
	}	

.nav ul {
	width: 910px;
	margin: 0 auto 0 0;
	z-index:100;
	padding: 0 0 0 0;	
	list-style-type:none;
	}
	
.nav li {
	float: left;
	list-style: none;
	font-size: 12px;
	border-right:1px solid #324e84;
	z-index:100;
	margin:0 0 0 0;
	}

.nav li ul li 
	{
	padding:0 0 0 0;
	background:white;
	border-bottom:1px solid silver;
	border-right:1px solid silver;
	border-left:1px solid silver;
	text-align:left;
	font-size:13px;
	z-index:100;
	letter-spacing: 1px;
	clear:both;
	width:250px;
	}
	
.nav li a {
	display: block;
	margin-left:auto;
	padding: 6px 12px 7px 12px;
	/*padding: 2px 5px 2px 5px;*/
	margin: 0 0 0 0;
	color:white;
	z-index:100;
	text-decoration: none;
	font-weight:normal;
	border: none;
	}

.nav li ul li a {
	color:#222222;
	z-index:100;
	padding: 3px 12px 3px 12px;
	font-weight:normal;
	font-size:12px;
	}


.nav li a:hover {
	color: #eeeeee;
	background: #316ca0; 
	}
	
.nav li a.active {
	color: #fff;
	background: #64be29;
	}
	
.navActive
	{
	font-weight:bold;
	}
	
.navActive,
.navActive:active,
.navActive:visited,
.navActive:link
	{
	color: #eeeeee;
	font-weight:bold;
	}
	
.nav li ul { /* second-level lists */
	padding: 0 0 0 0;
	margin: 0 0 0 0;	
	position: absolute;
	background: #60b020/*#517a9c*/;
	filter:alpha(opacity=99);
	opacity:0.99;
	width:250px;
	left: -999em;  /*using left instead of display to hide menus because display: none isn't read by screen readers */
	}

.nav li:hover ul, 
.nav li.sfh ul { /* lists nested under hovered list items */
	left: auto;
	padding:0 0 0 0;
	font-size: 100%;
	}

.nav li ul li a:hover 
	{
	background:#eeeeee;
	color: #333333;
	}

