/* drop down menus gotten from 
http://www.deansabatino.com/suckerfish/suckerfish.html 
-----------------------------------------------------*/

/* Overall main navigation styles */

#nav {
margin-left: 10px;
}

#nav ul {
float: left;
list-style: none;
line-height: 1em;
padding: 0;
margin: 0;
color: #000;
}

/* The top main navigation links */
#nav a {
display: block;
text-decoration: none;
color: #000;
}

#nav li {
float: left;
padding: 0px 10px 0 5px;
}

/* -------------------------- */
/* The dropdown links lists */
#nav li ul {
position: absolute;
left: -999em;
height: auto;
width: 220px; 
border: 2px solid #000;
background-color: #FFF;
/* these control the gap between menu top and the list items */
margin: 0;
padding: 5px;
}

#nav li li {
padding: 0 5px 5px 5px;
}

#nav li ul a {
padding: 0;
width: 200px;
}

/* This controls the flyout location of the second level dropdowns 
-----------------------------------------------------------------*/
#nav li ul ul {
margin: -2em 0 0 140px;
}
#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 {
left: auto;
}

/* -------------------------- */
/* Here is the background of the main nav link while looking at the dropdown */
#nav li:hover, #nav li.sfhover {
background-color: #FFF;
}

/* The dropdown links list colors */
#nav li ul.under a {
background: #FFF;
color: #000;
}

#nav li ul.under a:hover {
color: #b72dff;
}
/* -------------------------- */
/* The background of the second level links while looking at the dropdown under it... */
#nav li ul.under li:hover a.daddy, #nav li ul.under li.sfhover a.daddy {
}
#nav li ul.under li:hover, #nav li ul.under li.sfhover {
}
/* -------------------------- */

/* If you need to have a second set of drop menus on the same page (No!!!),
   they need to have a set of styles as well. If they need to look
   the same, you could fold these references to #secnav into the
   styles above. Otherwise - a separate CSS file would be the way
   to go. I've included them here for this example...
 */

/* Begin our secondary navigation styles */

#secnav, #secnav li {
	float: left;
	list-style: none;
	line-height: 1em;
	color: #000;
	background-color: transparent;
	padding: 0;
	margin: 0;
}
/* -------------------------- */
/* Here are the top secondary navigation links */
#secnav a {
	display: block;
	padding: 0;
	color: #000;
	text-decoration: underline;
}

#secnav li {
	float: left;
	padding: 0;
}

/* -------------------------- */
/* The dropdown links lists */
#secnav li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 280px; 
	font-weight: normal;
	border: 2px solid #000;
	background-color: #FFF;
	/* these control the gap between menu top and the list items */
	margin: 0;
	padding: 10px 0 0 0;
}
#secnav li li {
padding: 0 5px 5px 5px;
}

#secnav li ul a {
	padding: 0 5px 5px 5px;
	width: 280px;
	text-decoration: none;
}

#secnav li:hover ul, #secnav li li:hover ul, #secnav li li li:hover ul, #secnav li.sfhover1 ul, #secnav li li.sfhover1 ul, #secnav li li li.sfhover1 ul {
	left: auto;
}

#secnav li ul a:hover {
color: #b72dff;
}

#secnav li:hover, #secnav li.hover {
position: static;
}

/* text formatting  */

#nav li {
font: 15px Tahoma, Geneva, sans-serif;
}

#nav li li {
font: 13px Tahoma, Geneva, sans-serif;
}

#nav .update {
font: 12px Georgia, "Times New Roman", Serif;
color: #CC0033;
}
