/* Menu function */

#menu {
clear:both;
width:100%;
height:24px;
background-color:#0a0a0a;
z-index:1000;
position:relative;
}

/* Menu adapted from www.htmldog.com */

#nav, #nav ul { /* all lists */
padding: 0;
margin: 0;
list-style: none;
line-height: 1;
}

#nav a {
display: block;
background-color:#0a0a0a;
color:#999;
border-right:1px solid #666;
border-bottom:none;
}

#nav li { /* all list items */
float: left;
}

#nav li ul { /* second-level lists */
position: absolute;
width:190px;
left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
left: auto;
}

#nav a.mainmenu, #nav a.nolink {
padding:5px 20px;
}

#nav a:hover.mainmenu {
background-color:#336699;
color:#fff;
}
#nav a:hover.nolink {
background-color:transparent;
color:#999;
cursor: default;
}


#nav a.submenu {
width:180px;
padding:5px 10px;
border-left:1px solid #666;
border-bottom:1px solid #666;
background-color:#1e3c59;
}

#nav a:hover.submenu {
background-color:#336699;
color:#fff;
}

.sub1 {
border: 1px #666 solid;
}

#menutag {
color:#666;
text-align:right;
margin-right:1em;
font-style:italic;
line-height:1.6;
margin-top:-20px;
}

