﻿/* CSS Document SuckerFish dropdown menu style sheet */

#nav{
/* uncomment this if using dropdowns */
	/*position:absolute;
	top:12.7em;
	left:17.5em;
	float:inherit;*/
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	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;
}
/*1st level middle class */

#nav .middle{
	background-image:url(../img/menudot.gif);
	background-repeat:no-repeat;
	background-position:center right;
	padding:0 12px 0 3px;
}
/*1st level last class */
#nav .last{
	background-image:none!important;
	padding:0 0 0 4px;
	/*background-image:url(../img/menudot.gif);
	background-repeat:no-repeat;
	padding-left:15px;
	background-position:0 6px;*/
}
/*1st level last class for active link */
#nav .active a{
	text-decoration:none;
	color:#666666!important;
}

#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-left:5px;
	font-size:0.9em;
	text-align:center;
}
#nav li ul li a {
	display: block;
	width:auto;
	color:#FFFFFF;
	padding-left:5px;
	font-size:0.9em;	
}
#nav li a:hover {
	text-decoration:none;
	color:#666;
}


#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;
	width:auto;
	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;
	background-image:url(../img/nav-gradient.png);
	background-repeat:repeat;
	background-position:0 100%;
	z-index:20;
	width:auto;
	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:#999999!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;
}