/* Menu Styles */

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

.third-level-menu > li
{
    height: 30px;
    background: #3A464F;
}
.third-level-menu > li:hover { background: #000000; }

.second-level-menu
{
    position: absolute;
    top: 30px;
    left: 0;
    width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.second-level-menu > li
{
    position: relative;
    height: 30px;
    background: #3A464F;
}
.second-level-menu > li:hover { background: #000000; }

.top-level-menu
{
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-level-menu > li
{
    position: relative;
    float: left;
    height: 30px;
    width: 200px;
    background: #0033ff;

}
.top-level-menu > li:hover { background: #000000; }

.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 */
{
    font: bold 14px Arial, Helvetica, sans-serif;
    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: #000000; }

a.white:link {color: #ffffff; }
a.white:active {color: #ff0033; }
a.white:visited {color: #ffffff; }
a.white:hover {color: #ff0033; text-decoration: bold; }