.dropdowns nav, .dropdowns ul, .dropdowns li, .dropdowns a  {margin: 0; padding: 0;}

.dropdowns a {text-decoration: none;}

.toggleMenu {
    display:  none;
}
.navnew {
    list-style: none;
     *zoom: 1;
}
.navnew:before,
.navnew:after {
    content: " "; 
    display: table; 
}
.navnew:after {
    clear: both;
}
.navnew ul {
    list-style: none;
}
.navnew a {
    padding: 10px 15px;
}
.navnew li {
    position: relative;
}
.navnew > li {
    float: left;
}
.navnew > li > .parent {
    /*background-image: url("../images/downArrow.png");*/
    background-repeat: no-repeat;
    background-position: right;
}
.navnew > li > a {
    display: block;
	color: #535353;
	font-family: var(--navfont);
	font-size: 14px;
	text-transform: uppercase;
    border-right: 2px solid #f00;
}
.navnew li  ul {
    position: absolute;
    left: -9999px;
}
.navnew > li.hover > ul {
    left: 0;
}
.navnew li li.hover ul {
    left: 100%;
    top: 0;
}
.navnew li li a {
    display: block;
    position: relative;
    z-index:100;
    font-size: 13px;
}
.navnew li li a:hover{
    background-color: #f6bb49;
    color: #fff;
}
.navnew li li li a {
    z-index:200;
}

@media screen and (max-width: 640px){
    .navnew > li > a{
        color: #fff;
        background-color: #e70033;
    }
    .active {
        display: block;
    }
    .navnew > li {
        float: none;
    }
    .navnew > li > .parent {
        background-position: 95% 50%;
        /*background-image: url("../images/downArrowm.png");*/
    }
    .navnew li li .parent {
        /*background-image: url("../images/downArrowm.png");*/
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .navnew ul {
        display: block;
        width: 100%;
    }
   .navnew > li.hover > ul , .navnew li li.hover ul {
        position: static;
    }
}