.menu-visible { bottom: 0; }
.menu-hidden { bottom: -55px; }

.menu-button {
    width: 58px;
    height: 16px;
    border-top: solid 2px #1C1C1E;
    border-right: solid 2px #1C1C1E;
    border-top-right-radius: 12px;
    -moz-border-radius-topright: 12px;
    -webkit-border-top-right-radius: 12px;
    position: absolute;
    top: -23px;
    left: 0;
    padding: 5px 10px 0 10px;
    color: #F9EDF1; /*#F9EDF1;*/
    font-size: 0.9em;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 2;
}

.menu-button-expanded { background: #212123 url('/Content/images/down-arrow-white.png') 50px 7px no-repeat; }
.menu-button-collapsed { background: #212123 url('/Content/images/up-arrow-white.png') 50px 6px no-repeat; }

.menu-content {
    background-color: #212123;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: solid 2px #1C1C1E;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: -2px;
    text-align: center;
    float:left;
    clear:left;
    position: relative;
    left: 50%;
    text-align: center;
}

.menu-list li {
    display: block;
    float: left;
    list-style: none;
    margin-left: 15px;
    text-align: center;
    position: relative;
    right: 50%;
    background-color: #262628;
    padding: 0 1px 1px 1px;
}

.menu-list li:first-child { margin-left: 0; }

.menu-list-borders li {
    /* Simulate gradient borders on inner menu item */
    background-image: linear-gradient(to bottom, #212123 0%, #262628 100%);
    background-image: -moz-linear-gradient(top, #212123 0%, #262628 100%);
    background-image: -webkit-linear-gradient(top, #212123 0%, #262628 100%);

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
}

.menu-list-gradient-bg li a {
    background-image: linear-gradient(to bottom, #212123 0%, #1D1D1E 100%);
    background-image: -moz-linear-gradient(top, #212123 0%, #1D1D1E 100%);
    background-image: -webkit-linear-gradient(top, #212123 0%, #1D1D1E 100%);

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
}

.menu-list li a
{
    font-family: "Segoe UI Light", Arial, Verdana, Helvetica, Sans-Serif;
    background-color: #1D1D1E;
    text-decoration: none;
    font-size: 1.1em;
    text-transform: uppercase;
    color: #F9EDF1;
    font-weight: bold;
    display: block;
    width: 175px;
    height: 50px;
}

.menu-list li a:hover
{
    color: #D8B052;
    background-color: #161616;

    background-image: linear-gradient(to bottom, #212123 0%, #161616 100%);
    background-image: -moz-linear-gradient(top, #212123 0%, #161616 100%);
    background-image: -webkit-linear-gradient(top, #212123 0%, #161616 100%);
}

.menu-list li a span { position: relative; top: 20px; }