

a {text-decoration: none;}

.toggleMenu {
    display:  none;
    background: #9e8977;
    padding: 10px 15px;
    color: #fff;
}
.nav {
    list-style: none;
     *zoom: 1;
     background:#fff;
	 float:right;
	 padding-top:1.5%;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 15em;
	padding-left:0;
	padding-top:0;
}
.nav a {
    padding: 7px 15px !important;
    color:#9e8977;
	font-weight: 600;
}
.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;
}

.test > a:hover{
     background-color: #9e8977 !important;
  color: #fff;
  border-radius: 3px;
}


.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li a {
    display: block;
    background: #ffffff;
    position: relative;
    z-index:100;
    border-top: 1px solid #9e8977;
}
.nav li li li a {
    background:#9e8977;
    z-index:200;
    border-top: 1px solid #9e8977;
}

.nav li ul li a:hover {
	color:#fff;
	background-color:#9e8977;
}

@media screen and (max-width: 770px) {
.toggleMenu {
    display:  block;
   
    
}
    .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{
	float:none;
	}
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }

}