.container {
    width: 97%;
    max-width: 1000px;
    margin: 10px auto;
}
#menus {
	margin: auto;
}
.toggleMenu {
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	 text-decoration: none;
    display:  none;
    background: #00B3AA;
    padding: 10px 15px;
    color: #fff;
}
.nav {
    list-style: none;
     *zoom: 1;
     background:#00B3AA;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 10em;
}
.nav a {

	color:#fff;
   padding: 10px 15px;
   font-family: 'Raleway', sans-serif;
   text-decoration: none;
   font-size: 1.1em;
}
.nav a:hover {
	background: #099;
}
.nav li {
    position: relative;
}
.nav > li {
    float: left;
}
.nav > li > .parent {

}
.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: #099;
    position: relative;
    z-index:100;
    border-top: 1px solid white;
}
.nav li li li a {
    background:#366;
    z-index:200;
    border-top: 1px solid white;
}

@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
    .nav > li {
        float: none;
        font-family: 'Raleway', sans-serif;
		  text-decoration: none;
    }
    .nav > li > .parent {
        background-position: 95% 50%;
    }
    .nav li li .parent {

    }
    .nav ul {
        display: block;
        width: 100%;
    }
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }

}