/* Navigation */

 /* menu starts */
#nav {
/*makes sure menu is above content with z-index*/
	position: relative;
	float: right;
	top: 52px;
	right: 30px;
  	z-index: 1001;
}
#nav, #nav ul {
/* all lists */
	padding: 0;
	margin: 0;
	font-family: verdana, helvetica, geneva, arial, sans-serif;
	font-size: 1em;
	font-weight: bold;
	list-style: none;
	line-height: 1;
	z-index: 1001;
}
#nav li {
/* all list items */
	float: left;
	width: 90px; /* width needed to keep Opera happy */
	
}
#nav li ul {
/* second-level lists inc width */
	position: absolute;
	width: 90px;
	left: -999em;
	font-size: .9em;
/* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav a {
/* width is for ie mouseover */
	display: block;
	width: 90px;
	text-decoration: none;
	color: #6E6E6E;
	padding: 6px 2px 6px 2px; /*the right 2 px makes the width right*/
	background-color: #ffffff;
}
#nav li ul ul {
/* third-and-above-level lists submenu positioning*/
	margin: -4em 0 0 10em;
}
#nav li:hover ul ul, #nav li.sfhover ul ul {
/* hides submenus */
	left: -999em;
	/*margin-bottom: 10px;*/	
}
#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;
	margin-left: -10px;
}
html>body #nav a:link, html>body #nav a:visited{
	width: 90px;
}
#nav a:link, #nav a:visited {/*fix width in ie 6.0*/
	padding-bottom: 10px;
	padding-top: 10px;
	padding: 10px 2px 10px 15px;
}
#nav a:hover {
/* mouseover color style */
	color: #ffffff;
	background-color: #99cad4;
}
#nav .head_li:link,#nav .head_li:hover,#nav .head_li:visited{
	/*background-color: #99cad4;*/
	background-color: #99cad4;
	text-align: center;
	font-size: 1.1em;
	padding: 6px 4px 6px 4px;
	color: #ffffff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;

	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
}
#nav .head_li:hover{
	/*color: #0054A6;*/
	color: #ffffff;
	/*background-color: #5897A6;*/
	background-color: #1F6795;
}

