.third-level-menu
{
    position: absolute;
    top: 0;
    right: -150px;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.third-level-menu > li
{
    height: 30px;
    background: #999999;
}
.third-level-menu > li:hover { background: #CCCCCC; }

.second-level-menu
{
    position: absolute;
    left: 0;
    width: 250px;
    list-style: none;
    padding-top: 10px;
    margin: 0;
    display: none;
    text-align:left;
}

.second-level-menu > li
{
    position: relative;
    padding: 10px;
    background: #999999;
    z-index: 999
}
.second-level-menu > li:hover { background: #CCCCCC; }

.top-level-menu
{
    text-align:left;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    background: #000000;
}

.top-level-menu > li
{
    position: relative;
    display: inline-block;
    padding: 10px 0 10px 0;
    background: #000;
    margin-right: 30px;
}
.top-level-menu > li:hover a { color: #af0001; }

.top-level-menu li:hover > ul
{
    /* On hover, display the next level's menu */
    display: inline;
}


/* Menu Link Styles */

.top-level-menu a /* Apply to all links inside the multi-level menu */
{
    color: #FFFFFF;
    text-decoration: none;
    /*padding: 0 0 0 10px;*/

    /* Make the link cover the entire list item-container */
    display: block;
    line-height: 30px;
}
.top-level-menu a:hover { color: #ffffff; }