﻿#nav {
    list-style: none inside;
    position: relative;
    float: right;
    padding-top: 16px;
    padding-bottom: 14px;
    padding-right: 50px;
    border-bottom: 2px solid #e4e3df;
    margin-bottom: 27px;
    white-space: nowrap;
}

    #nav li {
        display: block;
        position: relative;
        float: left;
    }

        #nav li a {
            text-decoration: none;
            line-height: 75px; /* this is the height of the menu items */
            font: italic 16px/20px Georgia, "Times New Roman", Times, serif;
            color: #7e7e7c;
            padding: 22px;
        }

        #nav li li a {
            display: inline-block;
            color: #8c8988;
            padding: 5px 25px 5px 5px;
            margin-bottom: 7px;
            position: relative;
            font: italic 14px/20px Georgia, "Times New Roman", Times, serif;
        }

    #nav > li.sfHover > a, #nav > li > a:hover, #nav > li.current > a {
        text-decoration: none;
        background-position: center bottom;
        color: #ff811f;
    }

    /*--- Sublist Styles ---*/
    #nav ul {
        position: absolute;
        display: none;
    }

    #nav li:hover ul ul {
        display: none;
    }
    /* hides sub-sublists */

    #nav li:hover ul {
        display: block;
        background: #f6f5f2;
    }
    /* shows sublist on hover */

    #nav li li:hover ul {
        display: inline-block; /* shows sub-sublist on hover */
    }

    #nav li li > a:hover, #nav li li.sfHover > a {
        color: #f6f5f2;
        background-color: #8c8988;
        text-decoration: none;
    }