/* CSS Document SuckerFish dropdown menu style sheet */

#nav-container {
 padding:0; 
 margin:0;
}
#nav{
	position:relative;
	float:left;
	top:5px;
	/*left:135px;*/
	left:8px;

	/*position:absolute;
	top:12.7em;
	left:17.5em;
	float:inherit;*/
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 0.9em;
	z-index:100;
}
/* Style top top level of the menu with a background image.*/
/* first and last items in this menu should not have background image */
/*1st level first class */
#nav .first{
	/*background-image:none!important;*/
	background-image:url(../images/headers/menudot.gif);
	background-repeat:no-repeat;
	background-position:top right;
}
/*1st level middle class */
#nav .middle{
	background-image:url(../images/headers/menudot.gif);
	background-repeat:no-repeat;
	background-position:top right;
}
/*1st level last class */
#nav .last{
	background-image:none!important;
	background-repeat:no-repeat;
	background-position:top right;
}
/*1st level last class for active link */
#nav .active a{
	text-decoration:none;
	color:#B9BFBF;
}

#nav li ul .first{
	background-image:none!important;
}
/*2nd level middle class */
#nav li ul .middle{
	background-image:none!important;
}
/*2nd level last class */
#nav li ul .last{
	background-image:none!important;
}

/* Set the style rule for the active top level link */





/* Give the top level links a smaller width than the dropdowns*/
#nav li { /* all list items */ 
	/*float: left;
	width: 9em;*/ /* width needed or else Opera goes nuts */
}


#nav li a {
	display: block;
	width:auto;
	color:#FFFFFF;
	padding-top:0px;
	padding-right:16px;
	padding-bottom:8px;
	padding-left:5px;
	font-size:0.9em;
	text-align:left;
}
#nav li ul li a {
	display: block;
	width:160px;
	line-height:1.8em;
	color:#FFFFFF;
	padding-left:0px;
	font-size:0.9em;
	text-align:left;
	border-bottom:1px solid #ccc;
	border-right:0;
	height:1%;
}
#nav li a:hover {
	text-decoration:none;
	color:#CCCCCC;
}


#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
}
#nav li ul li{
	/*list-style:none;*/
	}
#nav li ul li a {
	display: block;
	
	color:#FFFFFF;
	padding-left:5px;
}
#nav li ul li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
}


#nav li ul { /* second-level lists */
	position: absolute;
	top:18px;
	width: 180px;
	background:#fff;
	/*
	background-image:url(../img/nav-gradient-white2.png);
	background-repeat:no-repeat;
	background-position:bottom right;
	*/
	z-index:20;
	border-top:4px hidden #144e8d;
	border-left:1px solid #eee;
	border-right:4px solid #eee;
	border-bottom:4px solid #eee;
	/*
	border-style:solid;
	border-color:#ccc;
	border-width:0 0 0 1px;
	*/
	filter:alpha(opacity=87);
	opacity: 0.87;
	-moz-opacity:0.87;
	
	/*padding-bottom:10px;*/
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li a {
	color:#333333!important;
	padding-bottom:2px;
	padding-top:2px;
}

#nav li ul li a:hover {
	color:#144e8d!important;
	
}


#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 9em;
}
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto; 
	}
#content {
	clear: left;
	color: #ccc;
}