#menu_bottom, #menu_bottom ul { /* all lists */
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 1;
    z-index: 1500;
}

#menu_bottom 
{
position: relative;
}

#menu_bottom a {
    display: block;
    width: 10em;
    
    font-family: Arial;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    
    padding: 3px;
}

#menu_bottom li { /* all list items */
    float: left;
    width: 8em; /* width needed or else Opera goes nuts */
   
}

#menu_bottom li ul { /* second-level lists */
    position: absolute;
    background: #ff0000;
    width: 8em;
    left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#menu_bottom li ul ul { /* third-and-above-level lists */
    margin: -17px 0 0 8em;
}

#menu_bottom li:hover ul ul, #menu_bottom li:hover ul ul ul, #menu_bottom li.sfhover ul ul, #menu_bottom li.sfhover ul ul ul {
    left: -999em;
}

#menu_bottom li:hover ul, #menu_bottom li li:hover ul, #menu_bottom li li li:hover ul, #menu_bottom li.sfhover ul, #menu_bottom li li.sfhover ul, #menu_bottom li li li.sfhover ul { /* lists nested under hovered list items */
    left: auto;
}

#scontent {
    clear: left;
    color: #ccc;
}
