.toggleMenu {
    display:  none;
    background: #3b7eb2;
    padding: 10px 15px;
    color: #fff;
}
.nav1 {
    list-style: none;
     *zoom: 1;
     background:#3b7eb2;
}
.nav1:before,
.nav1:after {
    content: " "; 
    display: table; 
}
.nav1:after {
    clear: both;
}
.nav1 ul {
    list-style: none;
    width: 15em;
}
.nav1 a {
    padding: 10px 25px;
    color:#fff;
}
.nav1 li {
    position: relative;
}
.nav1 > li {
    float: left;
    border-top: 0px solid #104336;
}
.nav1 > li > .parent {
    background-image: url("../images/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
	padding-right:20px;
}

.nav1 > li > .parent:hover {
    background-image: url("../images/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
	background-color:#ffffff;
	border-radius:20px;
	padding-right:20px;
	color:#333333;
}

.nav1 > li > a {
    display: block;
}
.nav1 li  ul {
    position: absolute;
    left: -9999px;
}
.nav1 > li.hover > ul {
    left: 0;
}
.nav1 li li.hover ul {
    left: 100%;
    top: 0;
}
.nav1 li li a {
    display: block;
    background: #033b5e;
    position: relative;
    z-index:100;
    border-top: 1px solid #035385;
}
.nav1 li li a:hover {
    display: block;
    background: #207bb3;
    
    border-top: 1px solid #035385;
}

.nav1 li li li a {
    background:#3b7eb2;
    z-index:200;
    border-top: 1px solid #6eadde;
}

@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
    .nav1 > li {
        float: none;
    }
    .nav1 > li > .parent {
        background-position: 95% 50%;
    }
    .nav1 li li .parent {
        background-image: url("../images/downArrow.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .nav1 ul {
        display: block;
        width: 100%;
    }
   .nav1 > li.hover > ul , .nav1 li li.hover ul {
        position: static;
    }

}