﻿/* Menu */

#menu {
    width: 902px;
}
.menu
{
    height: 57px;
    text-align: center;
    margin: 16px 0 0 0;
    padding: 0;
    list-style: none;
    display: -moz-box;
    display: -webkit-box;
    display: box;
    width: 100%;
}

    .menu > li
    {
        -moz-box-flex: 1;
        -webkit-box-flex: 1;
        box-flex: 1;
        margin: 0;
        border-top: 3px solid #00b9ff;
        border-bottom: 1px solid #0095f4;
        border-right: 1px solid #75cff7;
        background-color: #008ef0;
        background-image: -o-linear-gradient(bottom, rgb(0,129,234) 0%, rgb(0,155,245) 50%, rgb(37,178,248) 50%, rgb(13,195,255) 100%);
        background-image: -moz-linear-gradient(bottom, rgb(0,129,234) 0%, rgb(0,155,245) 50%, rgb(37,178,248) 50%, rgb(13,195,255) 100%);
        background-image: -webkit-linear-gradient(bottom, rgb(0,129,234) 0%, rgb(0,155,245) 50%, rgb(37,178,248) 50%, rgb(13,195,255) 100%);
        background-image: -ms-linear-gradient(bottom, rgb(0,129,234) 0%, rgb(0,155,245) 50%, rgb(37,178,248) 50%, rgb(13,195,255) 100%);
        /*background-image: linear-gradient(bottom, rgb(0,129,234) 0%, rgb(0,155,245) 50%, rgb(37,178,248) 50%, rgb(13,195,255) 100%);*/
        color: #fff;
        text-decoration: none;
        text-shadow: 0px 0px 6px #777;
        -webkit-box-shadow: 0px 2px 2px rgba(50, 50, 50, 0.15);
        -moz-box-shadow: 0px 2px 2px rgba(50, 50, 50, 0.15);
        box-shadow: 0px 2px 2px rgba(50, 50, 50, 0.15);
    }

        .menu > li:first-child
        {
            border-left: 2px solid #009cf5;
            -webkit-border-top-left-radius: 6px;
            -webkit-border-bottom-left-radius: 6px;
            -moz-border-radius-topleft: 6px;
            -moz-border-radius-bottomleft: 6px;
            border-top-left-radius: 6px;
            border-bottom-left-radius: 6px;
        }

        .menu > li:last-child
        {
            border-right: 2px solid #009cf5;
            -webkit-border-top-right-radius: 6px;
            -webkit-border-bottom-right-radius: 6px;
            -moz-border-radius-topright: 6px;
            -moz-border-radius-bottomright: 6px;
            border-top-right-radius: 6px;
            border-bottom-right-radius: 6px;
        }

    .menu a
    {
        font-family: "Arial Rounded", ArialRound, ArialRounded, Arial, sans-serif;
        display: inline-block;
        white-space: nowrap;
        width: 100%;
        padding: 18px 0;
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 15px;
        font-weight: bold;
    }

        .menu a:hover
        {
            text-decoration: underline;
        }

/* Fallback styles */
.no-cssgradients .menu > li
{
    background: url('/Cloud/menuBackground.gif') repeat-x;
    border-top: 0;
    border-bottom: 0;
    padding-top:4px;
}

.no-borderradius .menu
{
    background: url('/Cloud/menuBackground.gif') repeat-x;
}

    .no-borderradius .menu > li:first-child
    {
        background: url('/Cloud/menuLeft.gif') no-repeat;
        border-top: 0;
        border-bottom: 0;
        border-left: 0;
    }

    .no-borderradius .menu > li:last-child
    {
        background: url('/Cloud/menuRight.gif') top right no-repeat;
        margin-right: -6px;
        border: 0;
    }

