.jquerycssmenu{
margin-left: 30px; /*offset of tabs relative to browser left edge*/
}

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

/*Top level list items*/
.jquerycssmenu ul li{
position: relative;
display: inline;
float: left;
margin-right:17px;

}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
display: block;
padding: 10px 10px 10px 10px;
text-decoration: none;
}

.jquerycssmenu ul li a:hover{
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
margin-right:15px;
}

/*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-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
font-size:12px;
width: 154px; /*width of sub menus*/
color: #e67b47;
padding: 6px 5px;
border-bottom: 1px solid #5f2f37;
letter-spacing:0;
background-color:#41161d;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
background-color: #743436;
color: #e67b47;
}
