.jquerycssmenu{
font: 10px Verdana;
padding-left: 15px;
background: url(/images/layout/menu_bg.jpg) no-repeat;
text-transform: uppercase;
width: 940px;
height: 30px;
z-index: 1000;
  margin: 0 auto;
}

.jquerycssmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
height: 30px;
}

/*Top level list items*/
.jquerycssmenu ul li{
position: relative;
display: inline;
float: left;
border-right: 1px solid #444;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
display: block;
padding: 9px 10px 9px 9px;
margin-right: 1px; /*spacing between tabs*/
color: #ffffff;
text-decoration: none;

}

.jquerycssmenu ul li a:hover{
background: url(../images/menu_hover.jpg) no-repeat center;
color: #a6ce39;
}
	
/*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;
text-align: left;
}

/*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 10px Verdana;
width: 150px; /*width of sub menus*/
background: #333333;
color: #FFF;
padding: 4px 4px 4px 5px;
margin: 0;
filter: alpha(opacity=94); 
-moz-opacity: .94; 
opacity: .94;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
background: #222;
color: #a6ce39;
filter: alpha(opacity=99); 
-moz-opacity: .99; 
opacity: .99;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 7px;
right: 5px;
}

.rightarrowclass{
position: absolute;
top: 5px;
right: 5px;
}

