.jquerycssmenu{
padding-left: 47px; /*offset of tabs relative to browser left edge*/
background:none;
width: 500px;
height: 100px;
}

.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{
 display: block;
background: none top center repeat-x;; /*background of tabs (default state)*/
padding: 15px 7px 13px 7px;
margin-right: 33px; /*spacing between tabs*/
color: #ded9c0;
text-decoration: none;
}

.jquerycssmenu ul li a:hover{
background: none;
color: #b49860;
text-decoration:underline;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
border-top: 0px solid black;
text-align: left;

}

/*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 13px Verdana;
width: 140px; /*width of sub menus*/
background: #423319;
color: #ded9c0;
padding: 4px 5px;
margin-top: 0;
border-top-width: 0;
border-bottom: 1px solid #ded9c0;
font-size:10px;
text-decoration:none;

}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
background: #4f3d1a;
color: #b49860;
font-size:10px;
text-decoration:none;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 25px;
right: 25px;
}

.rightarrowclass{
position: absolute;
top: 5px;
right: 5px;
}
