﻿/*------------- Navigation Top -------------*/
.navigation {
    width: 100%;
    margin: 0px;
    border-top: 1px solid #039BE5;
    background: #039BE5 url(../Icons/bg_menu.gif) repeat-x top;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    overflow: hidden;
}

    .navigation .nav {
        list-style: none;
        line-height: 30px;
        background: transparent;
        font-size: 11px;
        font-weight: bold;
    }

        .navigation .nav li {
            position: relative;
            display: inline-block;
            transition: all 0.4s ease;
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            -ms-transition: all 0.4s ease;
            -o-transition: all 0.4s ease;
        }

            .navigation .nav li a {
                text-transform: uppercase;
                padding: 0px 15px;
                border-right: 1px solid #f0f0f0;
                color: #fff;
                font-size: 13px;
                transition: all 0.4s ease;
                -webkit-transition: all 0.4s ease;
                -moz-transition: all 0.4s ease;
                -ms-transition: all 0.4s ease;
                -o-transition: all 0.4s ease;
                text-decoration: none;
            }

                .navigation .nav li a:hover,
                .navigation .nav li a.active {
                    color: #00ECFF;
                }

            .navigation .nav li:last-child a {
                border-right: none;
            }

/*------------- Navigation Menu -------------*/
.box-menu {
    margin: 5px 10px 15px 10px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

    .box-menu > h2 {
        line-height: 16px;
        font-size: 14px;
        font-weight: bold;
        padding: 5px 0px;
        color: #039BE5;
    }

    .box-menu .nav-menu {
        width: 100%;
    }

.nav-menu li {
    font-size: 11px;
}

.nav-menu > li > a {
    display: inline-block;
    font-weight: bold;
    font-size: 12px;
    padding: 5px 5px 5px 15px;
    background: url(../Icons/list_style.gif) no-repeat 0px 8px;
}

.nav-menu ul {
    border-top: 1px solid #f0f0f0;
}

    .nav-menu ul li {
        padding-left: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu ul a {
        display: inline-block;
        font-size: 12px;
        padding: 5px 5px 5px 15px;
        background: url(../Icons/list_style3.gif) no-repeat 0px 10px;
    }

.nav-menu a.active {
    color: #b20d0d;
}