#nav, #nav ul { /* all lists */
        padding: 0;
        margin: 0 0 0 15px;
        list-style: none;
        line-height: 1;
        background-color:#284C7E;
        text-align:center;
        font-weight:bold;
        color: #fff;
}

#nav ul a:hover {
        background-color:#A7C0E2;
        color:#284C7E;
        }

#nav a {background-color:#284C7E;
        color:#fff;
        display: block;
        padding:4px;
        text-decoration:none;
}

#nav a:hover{color:#FFBF00;
}


#nav li { /* all list items */
        list-style-type:none;
        float: left;
        width: 10em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
        width: 10em;
        font-size:12px;
        border-top: 1px solid #fff;
        position: absolute;
        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;
        color:#FC0;
}


