/* CSS Document */
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	
	font-size: 8pt;
	font-weight: bold;
	
}
#nav {
width: 799px;
height: 28px;
background: url(images/nav_background.jpg) top left repeat-x;
margin: 0;
clear: both;
}

/* styles for all LI's in the list */
#nav li
{

	position: relative;
	list-style: none;
	float: left;
	width: 130px; /* Width of Menu Items */
	}
	
	
	#nav li li
{

	width: 160px; /* Width of Menu Items */
	}
	

#nav li a {  /* only top level lists */
padding-top: 7px;

display: block;
	color: #58585a;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	height: 21px;
	
	

	
}

#nav li a:hover {  /* only top level lists */


color: #333333;

	
}


#nav  li li a {  /* second level lists */
	display: block;
width: 148px;
	color: #58585a;
	text-align: left;
	border-top: 1px solid #58585a;
	border-right: 1px solid #58585a;
	border-left: 1px solid #58585a;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 5px;
	font-weight: bold;
	height: auto;
	background-color: #c7d1ea;;
	font-size: 8pt;
	
}



#nav li ul { /* second-level lists */
	position: absolute;
	background-color: #c7d1ea;
	border-bottom: 1px solid #000066;
	color: #FF3300;
	
	
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	}
	




#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
	
}

#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;
	
}
#nav li li a:hover, #nav li li.sfhover {
background:  url("images/new_arrow.gif") top left no-repeat;
color: #ef59a1;
}
#nav a.arrow:hover {
background:   url("images/new_arrow.gif") top left no-repeat;
}
