#menu {
width:100%;
background-color:#369;
height:24px;
position:relative;
z-index:200;
}

/* 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;
color:#ddd;
text-decoration:none;
}

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

#nav li ul { /* second-level lists */
position: absolute;
width:180px;
font-size:.9em;
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 {
padding:5px 20px;
border-right:1px solid #000;
background-color:#369;
position:relative;
z-index:10;
}

#nav a:hover.mainmenu {
background-color:#4583C0;
color:#fff;
border-bottom:none;
}

#nav a.submenu {
width:170px;
padding:5px 10px;
background-color:#369;
border-bottom:1px solid #000;
border-right:1px solid #000;
border-left:1px solid #000;
}

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

.sub1 {
border-top: 1px #000 solid;
}

#tag {
color:#ddd;
padding:5px 20px;
}
