.menucontainer {
    width: 100%;
    max-width: 840px;
    float: left;
    font-family: "Roboto Condensed", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.toggleMenu {
    display:  none;
    background: #666;
    color: #fff;
    width: 100%;
    padding: 8px 0;
    text-align: center;
}
.nav {
    list-style: none;
     *zoom: 1;
}
.nav:before,
.nav:after {
    content: " ";
    display: table;
}
.nav:after {
    clear: both;
}
.nav>li {
    position: relative;
    float: left;
}
li.dropdown{
    position: relative;
}
li.dropdown ul{
    margin: 0;
    padding: 0;
}
li.dropdown .ddmenu{
    position: absolute;
    display: block;
    min-width: 800px;
    top: 105%;
    left: -185px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    background-color: rgba(185,34,38,.9);
    transition: all 1s ease .3s;
    z-index: 10000;
}
li.dropdown:hover .ddmenu{
    top: 100%;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}
.ddmenu .ddcol{
    width: 30%;
    padding: 1.5%;
    float: left;
}
.ddcol img{
    margin: 10px;
}
.ddmenu ul li{
    display: block;
    width: 100%;
}
.ddmenu ul li a{
    /*display: block;*/
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    padding-right: 10px;
    text-decoration: underline;
}
/*ul.subcats{
    border-left: 5px solid #d41116;
}*/
ul.subcats>li>a{
    text-decoration: none;
}
.ddmenu ul li a:hover{background: url(../images/footer-arrow.png) no-repeat center right;}
.maincats ul,.maincats img{
    display: none !important;
}

.nav>li>a {
    padding: 10px 28px 7px;
    color:#fff;
    display: block;
    text-align: center;
    text-transform: uppercase;
    border-top: 3px solid transparent;
    border-right: 1px solid #121212;
    box-shadow: 1px 0px 0px #222;
    font-size: 16px;
}
.nav>li>a>span{
    display: block;
    text-transform: none;
    font-size: 12px;
    color: rgba(255,255,255,.6);
}
.nav>li>a:hover{
    background: #121212;
    background: -webkit-linear-gradient(top, #121212 0%,#0b0b0b 100%);
    background: linear-gradient(to bottom, #121212 0%,#0b0b0b 100%);
    border-top: 3px solid #ec1d22;
}
.maincats>li>span{
    color: #fff;
    display: inline-block;
    font-size: 22px;
    vertical-align: -2px;
}
@media only screen and (max-width:1210px){
    .menucontainer{
        float: none;
        margin: 5px auto;
    }
}
@media screen and (max-width: 850px) {
    .nav>li {
        float: none;
    }
    .nav>li>a{
        border: none;
    }
    .nav>li>a:hover{
        border: none;
        color: #ec1d22;
    }
    .nav span{
        display: none;
    }
    li.dropdown .ddmenu{
        min-width: 0;
        width: 99%;
        left: 0;
        text-align: center;
    }
    .ddmenu .ddcol{
        float: none;
        width: 100%;
        display: none;
    }
    .ddmenu .ddcol:nth-child(2){
        display: block;
    }
}