

.container {
    width: 100%;
    max-width: 1230px;

}
.toggleMenu {
    display:  none;
    background: #000;
    padding: 23px 15px;
    color: #fff;
	width:100%;
}
.nav {
    list-style: none;
     *zoom: 1;
     /*background:#175e4c;*/
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 9em;
}
.nav a {
    padding: 15px 15px;
    color:#fff;
	font-size:14px;
	
}
.nav li {
    position: relative;
	
}
.nav > li {
    float: left;
    /*border-top: 1px solid #104336;*/
	font-weight:bold;
	margin-right:76px;
}
.nav > li > .parent {
    background-image: url("../images/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
}
.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: #1d7a62;
    position: relative;
    z-index:100;
    border-top: 1px solid #175e4c;
}
.nav li li li a {
    background:#249578;
    z-index:200;
    /*border-top: 1px solid #1d7a62;*/
	font-size:14px;
	line-height:62px !important;
}

@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
    .nav > li {
	  float: none;
	  background: #000;
	  border-bottom: solid 1px #fff;
	  color:#fff;
	  border-right:none;
	  margin-right:0px;
    }
	
	    .nav > li a {

	  color:#fff;

    }
	
	    .nav > li:last-child {

	  border-bottom: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%;
    }
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }

}