.toggleMenu {
    display:  none;
    background: none;
    padding: 5px 15px;
    color: #faa635;
	width:100%;
	box-sizing:border-box;
	text-decoration:none;
	font-size:30px;
	
}
.nav {
    list-style: none;
     *zoom: 1;
     background:none;
	 margin:0;
	 padding:0;
	 border-bottom:#000 solid 1px;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 9em;
}
.nav a {
    padding: 10px 15px;
    color:#000;
	text-decoration:none;
	font-family:"Open Sans",sans-serif;
	font-weight:600;
	font-size:16px;
}
.nav a:hover{background:#faa635;
 -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.nav a.active{background:#faa635;}
.nav li {
    position: relative;
}
.nav > li {
    float: left;
    border-top: none;
}
.nav > li > span {
    background-image:url(../../images/downArrow.png);
    background-repeat: no-repeat;
    background-position: right;
	float: right;
    margin-right: 12px;
    width: 20px;
}
.nav > li > a {
    display: block;
}
.nav li  ul {
    position: absolute;
    left: -9999px;
}
.nav > li.hover > ul {
    left: 0;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li a {
    display: block;
    background:none;
    position: relative;
    z-index:100;
    border-top: none;
	text-decoration:none;
	font-family:"Open Sans",sans-serif;
	font-weight:600;
}
.nav li li li a {
    background:#249578;
    z-index:200;
    border-top: 1px solid #1d7a62;
}

@media screen and (max-width: 999px) {
    .active {
        display: block;
    }
    .nav > li {
        float: none;
    }
    .nav > li > .parent {
        background-position: 95% 50%;
    }
    .nav li li .parent {
        background-image:url(../../images/downArrow.png));
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .nav ul {
        display: block;
        width: 100%;
		padding:0;
    }
	.nav ul li a{padding-left:40px; box-sizing:border-box;}
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }

}