/* Menu */

#menu{
width:719px;
height:21px;
background-color:#005596;
position:relative;
z-index:10;
}

/* Menu adapted from www.htmldog.com */
#nav, #nav ul { /* all lists */
padding:0;
margin: 0;
list-style: none;
line-height: 1.25;
}

#nav a {
display: block;
font-size:small;
}

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

#nav li ul { /* second-level lists */
position: absolute;
width: 157px;
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;
}

/* Menu Decoration */

a.mainmenu {
color:#fff;
width:101px;
height:16px;
background-color: #005596;
text-decoration:none;
padding:2px 0 2px 10px;
border-right:1px solid #999;
}

.mainmenu:hover {
color:#000;
background-color:#9C6;
}

.submenu {
color:#fff;
text-decoration:none;
background-color: #6699CC;
width:150px;
border-left:1px solid #fff;
border-right:1px solid #fff;
border-bottom:1px solid #fff;
}

.submenu a {
text-decoration:none;
color:#fff;
font-weight:bold;
padding:3px 0 3px 5px;
}

.submenu:hover {
color:#000;
text-decoration:none;
background-color: #9C6;
}

#nav ul li a {
padding:3px;
font-size:.6em;}