#myjquerymenu ul {position: absolute; left: 0; top: 0; z-index: 200; }

.jquerycssmenu{
font: bold 11.5px Trebuchet MS; text-transform:uppercase;
padding-left: 1px; /*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;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
display: block;
background: none; /*background of tabs (default state)*/
padding: 8px 0px 8px 17px;
margin-right: 3px; /*spacing between tabs*/
color: #6b6131;
text-decoration: none;
}
.jquerycssmenu ul li a:hover{
color: #354171;
text-decoration: none;
/*tab link color during hover state*/
}
.jquerycssmenu ul li a:visited{
color: #6b6131;
text-decoration: none;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: relative;
left: 0;
display: block;
visibility: hidden;
}

/*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: bold 11px Trebuchet MS;
width: 140px; /*width of sub menus*/
background-color: #354171;
color: #cdccb8;
padding: 4px 5px 4px 10px;
margin: 0;
border: 1px solid #83805e;
border-top: none;
}
.jquerycssmenu ul li ul li a:visited{
color: #cdccb8;
text-decoration: none;
}
.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
background-color: #c2c7ab;
color: #433b15;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 12px;
right: 10px;
}

.rightarrowclass{
position: absolute;
top: 10px;
right: 5px;
}