body, nav, a  {margin: 0; padding: 0;}
body {font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
a {text-decoration: none;}


#menuPanel li, #menuPanel ul
{
	margin: 0; padding: 0;
}

.toggleMenu {
    display:  none;
    background: #333333;
	height:30px;
	width: 100%;
	background-image:url(../images/nav-icon.png);
	background-repeat:no-repeat;
	background-position:left;
}
.nav {
    list-style: none;
     *zoom: 1;
     background-color:#6F6F6E;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 9em;
}
.nav a {
    font: 9pt Arial, Helvetica, sans-serif;
	color: #ffffff;
    padding: 10px 11px;
	display:inline-block;
	text-decoration:underline;
}
.nav a:hover {
	color: #ffffff;
	text-decoration:underline;
	background:#6F6F6E;
}
.nav .selected{
	font: bold 9pt Arial, Helvetica, sans-serif;
	color: #ffffff;
	background-color:#222222;
}
.nav li {
    position: relative;
}
.nav > li {
    float: left;
}
.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: #5da528;
    position: relative;
    z-index:100;
    border-top: 1px solid #ffffff;

}
.nav li li li a {
    background:#e0defa;
    z-index:200;
    border-top: 1px solid #ffffff;
	color:#333333;
}

@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;
    }

}