/* #Navi-bar */
.main-nav {
    background-color: #363636;
    min-width: 1280px;
}

    .main-nav.fly {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 100;

        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }

    .main-nav .nav {
        margin: 0;
        padding: 0;
        list-style: none;
        float: left;
    }

.nav > li {
    float: left;
    
}
    .nav > li > a {
        color: #e1e1e1;
        text-decoration: none;
        font-size: 14px;
        height: 56px;
        display: block;
        line-height: 56px;
        padding: 0 31px;
    }

            .nav > li:hover a,
            .nav > li.active a{
                color: #fff;
                background-color: #ab0634;
            }



        .nav > li > a.brand {
            background-color: #fff;
            background-image: url('../Content/themes/base/images/small_logo.png');
            background-position: right center;
            background-repeat: no-repeat;
            width: 104px;
            padding: 0 0 0 16px;
            margin: 0;
            color: #333;
            display: block;
        }

/*Right part of navi-bar*/
.main-nav .nav-right {
    margin: 0;
    margin-right: 12px;
    padding: 0;
    list-style: none;
    float: right;
}

.nav-right > li > a {
    color: #959595;
    text-decoration: none;
    font-size: 14px;
    height: 55px;
    display: block;
    line-height: 55px;
    padding: 0 23px;
}

.main-nav li.dropdown:hover > a {
    background-color: #ab0634;
    color: #fff;
}


/*Dropdowns*/
.nav-dropdown {
    position: relative;
}

    .nav-dropdown > ul {
        list-style: none;
        margin: 0;
        padding:0;
        background: #252525;
        position: absolute;
        top: 100%;
        right: 0;
        border: 1px solid #363636;
        border-top: none;
        z-index: 13;
        overflow: hidden;

        height: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        transition: all .5s ease;
    }

    .nav-dropdown:hover > ul {
         height: auto;
         opacity: 1;
         filter: alpha(opacity=100);
         
    }

    .nav-dropdown > ul  > li{
        display: block;
        background-color:#252525;
        border-bottom: 1px solid #363636;

    }

        .nav-dropdown > ul > li:last-child {
           margin-bottom: 16px;
        }

    .nav-dropdown > ul a {
        text-decoration: none;
        display: block;
        color: #e1e1e1;
        height: 54px;
        line-height: 54px;
        text-align: left;
        padding: 0 111px 0 8px;
        
        white-space: nowrap;
    }

        .nav-dropdown:hover > ul a {
            background-color:#252525;
        }

        .nav-dropdown:hover > ul a:hover {
            background-color:#ab0634;
        }


/*Dropdowns */
/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */




