.jquerycssmenu{
font: normal .85em Arial;
border-bottom: thin solid #666;
}

.jquerycssmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.jquerycssmenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
letter-spacing: 2px;
font-size: 1em;
text-transform: uppercase;
display: block;
padding: 8px 7px 8px 7px;
margin-right: 35px; /*spacing between tabs*/
color: #dad1cb;
text-decoration: none;
}

.jquerycssmenu ul li a:hover{
background-color: #867063;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
border-top: 1px solid black;
z-index:99999;

}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
display: list-item;
float: none; 
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a{
font: normal 1em Arial;
width: 200px; /*width of sub menus*/
background: #d7762a;
color: white;
padding: 8px 5px;
margin: 0;
border-top-width: 0; text-align:left;
border-bottom: 1px solid black;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
background: #e1a16f;
color: white;
}

.active {background:#2C211A;}