.jquerycssmenu{
	font: bold 12px Verdana;
	position: absolute;
	z-index: 100;
	margin-top: 88px;
	padding: 0px;
}

.jquerycssmenu ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

/*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: white;
	margin-right: 4px;
	color: #2d2b2b;
	text-decoration: none;
	height: 14px;
	padding: 7px;
}

.jquerycssmenu ul li a:hover{

}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
	position: absolute;
	background: white;
	left: 0;
	display: block;
	visibility: hidden;
	padding: 2px 2px auto auto;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #FFF;
}

/*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{
	width: 200px;
	color: black;
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	font-style: normal;
	font-weight: bold;
	text-transform: none;
	margin: 0px;
	position: static;
}

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

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

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

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

