.jquerycssmenu{
font-family: Verdana, Helvetica;
font-size: 11px;
}

.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: #f6f6f5; /*background of tabs (default state)*/
width: 82px;
text-align: left;
padding: 2px 5px 2px 5px;
margin-right: 1px; /*spacing between tabs*/
border-bottom: 1px solid #cccccc;
border-right: 1px solid #cccccc;
color: #333333;
text-decoration: none;
}

.jquerycssmenu ul li a:hover{
background: #fec458; /*background of tabs (default state)*/
color: #ffffff;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
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-family: Verdana, Helvetica;
font-size: 11px;
text-align: left;
width: 180px; /*width of sub menus*/
background: #f6f6f5;
color: #333333;
padding: 2px 5px 2px 5px;
margin: 0;
border-bottom: 1px solid #cccccc;
}

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

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 7px;
right: 5px;
}

.rightarrowclass{
position: absolute;
top: 5px;
right: 5px;
}

