ul.topnav {  
z-index:999;
background-color:#000;
}
.jquerycssmenu{
	float: left;
	text-align: center;
	width:100%;
	display:inline;
	background-color:#000;
	margin:0px;
	z-index:999;
}

.jquerycssmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
	background-color:#000;
z-index:999;
}

/*Top level list items*/
.jquerycssmenu ul li{
position: relative;
display: block;
float: left;
z-index:999;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
	width:118px;
	display:block;
	height:25px;
	padding-top:10px;
	color:#FFF;
	text-decoration: none;
margin-right: 0px; /*spacing between tabs*/
}

.jquerycssmenu ul li a:hover{
	background-color:#800000;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
background-color:#800000;
text-align: left;

z-index:999;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
display: list-item;
float: none;
z-index:999;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul{
top: 0;
z-index:999;
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a{
font: normal 13px Verdana;
width: 160px; /*width of sub menus*/
background-color:#800000;
margin: 0;
text-indent:10px;
text-align: left;
}

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

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

.downarrowclass{
position: absolute;
top: 7px;
right: 5px;
z-index:999;
}

.rightarrowclass{
position: absolute;
top: 5px;
right: 5px;
z-index:999;
}

