body, nav, ul, li, a  {margin: 0; padding: 0; font-family:Helvetica, Arial;}
a {text-decoration: none;}
.container {
    width: 100%;
    max-width: 900px;
    margin: 10px auto;
}

    button {
    background: none repeat scroll 0 0 #cccccc;
    border: medium none;
    cursor: pointer;
    height: 27px;
    outline: medium none;
    overflow: hidden;
    position: relative;
    text-indent: -900em;
    width: 36px;
	border-radius:3px;
}

button:after {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: #ffffff;
    background-image: none;
    background-origin: padding-box;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto auto;
    box-shadow: 0 7px 0 #ffffff, 0 14px 0 #ffffff;
    content: "";
    height: 3px;
    left: 16%;
    position: absolute;
    top: 5px;
    width: 71%;
}

.toggleMenu {
    display:  none;
    color: #fff;
	text-align:center;
	padding:5px 0px 5px 0px;
	right:0;
	position:absolute;
	background:#999;
	top:7px;
}
.nav {
    list-style: none;
     *zoom: 1;
     background:#999;
	 width:100%;
	 clear:both;
}
.nav > li:hover{ background:#ccc;}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width:100%; display:block; overflow:hidden;
}
.nav a {
    padding: 5px 0px 5px 15px;
    color:#fff;
	font-family:Helvetica, Arial;
}
.nav li {
    position: relative;font-family:Helvetica, Arial;
}
.nav > li {
    float: none;
	display:block;
    border-top: 1px solid #fff;
}
.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: #bcbcbc;
    position: relative;
    z-index:100;
    border-top: 1px solid #999;
}
.nav li li li a {
    background:#999;
    z-index:200;
    border-top: 1px solid #999;
}

@media screen and (max-width: 768px) {
    .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%;
    }
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }

}