.main-nav{
    background: #30415f;
    background: -moz-linear-gradient(top,  #30415f 0%, #005088 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#30415f), color-stop(100%,#005088));
    background: -webkit-linear-gradient(top,  #30415f 0%,#005088 100%);
    background: -o-linear-gradient(top,  #30415f 0%,#005088 100%);
    background: -ms-linear-gradient(top,  #30415f 0%,#005088 100%);
    background: linear-gradient(to bottom,  #037e32 0%, #037e32 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#30415f', endColorstr='#005088',GradientType=0 );
}


.toggleMenu {
    display: none;
    background: #06385b;
    padding: 10px 15px;
    color: #fff;
    text-align:center;
    margin-top:5px;
}

.toggleMenu:hover {
    cursor: pointer;
}

.icon-bar{
    width:25px;
    height:3px;
    background:#fff;
    margin:3px;
    display:block;
    text-align:center;}

.toggleMenu p{
    margin:0;}

ul.menu, ul.menu ul {
    padding: 0;
    margin: 0;
} 

.menu {
    margin-bottom:0;
    list-style: none;
    *zoom: 1;
}
.menu:before,
.menu:after {
    content: " "; 
    display: table; 
}
.menu:after {
    clear: both;
}
.menu ul {
    z-index:1234;
    list-style: none;
    width: 20em;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.78);
    -moz-box-shadow:    0px 3px 5px 0px rgba(50, 50, 50, 0.78);
    box-shadow:         0px 3px 5px 0px rgba(50, 50, 50, 0.78);

}


.menu a {
    text-decoration:none;
    padding: 10px 15px;
    color:#faec0f;
}
.menu li {
    position: relative;
}
.menu > li {
    float: left;
    /*border-top: 1px solid #000;*/
}
.menu > li > .parent {
    background: url(menu-arrow/white-down.png) no-repeat right center;
    padding-right:25px;
}
.menu > li > a {
    font-family: 'Oswald', sans-serif;
    font-size:16px;
    padding: 12px 25px;
    display: block;

}

.menu > li > a:hover, .menu > li.active > a {
    background:#06385b;}

.menu > li > .parent:hover{
    background: #06385b url(menu-arrow/white-down.png) no-repeat right center;
    padding-right:25px;}

/*SELECT PARENT MENU*/	
.menu > li:hover a.parent, .menu > li.active a.parent{
    background: #06385b url(menu-arrow/white-down.png) no-repeat right center;}
/*SELECT PARENT MENU*/	


.menu li  ul {
    position: absolute;
    left: -9999px;
}
.menu > li.hover > ul {
    left: 0;
}
.menu li li.hover > ul {
    left: 100%;
    top: 0;
}
.menu li li a {
    display: block;
    background: #fff;
    position: relative;
    color:#363636;
    z-index:100;
    border-bottom: 1px solid #eee;
}

.menu li li:last-child a{
    border-bottom: none;
}

.menu li li a:hover, .menu li li.active a{
    color:#fff;
    background:#e94b26;}


@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
    .menu > li {
        float: none;
    }

    .menu li li .parent {
        background:url(menu-arrow/white-down.png) no-repeat right center;
    }
    .menu ul {
        display: block;
        width: 100%;
    }
    .menu > li.hover > ul , .menu li li.hover > ul {
        position: static;
    }

}