body, navv, ul, li, a  {margin: 0; padding: 0;}
body {font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
a {text-decoration: none;}
.container_nav {
    background:white;
    width: 100%;
	text-align:center;
	box-shadow: 0 1px 5px 2px rgba(0,0,0,.2);
	/*max-width: 900px;*/ 
   /* margin: 10px auto;*/ 
}


.menu {
    background:yellow;
    width: 100%;
	margin: 18px 0 0 0; 
}



.toggleMenu {
    display:  none;
    background: red;
    padding: 10px 15px;
    color: black;
}
.navv {
    list-style: none;
     *zoom: 1;
     background:white;
	 font-size:16px;
}
.navv:before,
.navv:after {
    content: " "; 
    display: table; 
}
.navv:after {
    clear: both;
}
.navv ul {
    list-style: none;
    width: 9em;
}
.navv a {

    padding: 10px 15px;
    color:black;
}
.navv li {
    position: relative;
}
.navv > li {
    float: left;
    border-top: 1px solid white;
}
.navv > li > .parent {
    background-image: url("../images/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
}
.navv > li > a {
    display: block;
}
.navv li  ul {
    position: absolute;
    left: -9999px;
}
.navv > li.hover > ul {

    left: 0;
}
.navv li li.hover ul {
    left: 100%;
    top: 0;
}
.navv li li a {
    display: block;
    background: white;
    position: relative;
    z-index:100;
    border-top: 1px solid white;
	
}
.navv li li li a {
    background:white;
    z-index:200;
    border-top: 1px solid red;
}

@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
    .navv > li {
        float: none;
    }
    .navv > li > .parent {
        background-position: 95% 50%;
    }
    .navv li li .parent {
        background-image: url("../images/downArrow.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .navv ul {
        display: block;
        width: 100%;
    }
   .navv > li.hover > ul , .navv li li.hover ul {
        position: static;
    }

}