.jquerycssmenu{
	font: bold 12px Verdana; /*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,
.jquerycssmenu ul li a:link,
.jquerycssmenu ul li a:visited
{
	display: block;
	background-color:#333333;
	padding: 17px 7px 0 7px;
	margin-right: 3px;
	border-bottom-width: 0;
	color: #FFF;
	text-decoration: none;
	height: 35px;
	width: 120px;
}

.jquerycssmenu ul li a:hover{
	color:#cbd403;
	background-color: #000;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
border-top: 1px solid black;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
display: list-item;
float: none;
line-height:1%;
}

/*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,
.jquerycssmenu ul li ul li a:link,
.jquerycssmenu ul li ul li a:visited
{
	font: normal 13px Verdana;
	width: 160px; /*width of sub menus*/
	background-color: #333;
	color: #FFF;
	padding: 4px 8px;
	margin: 0;
	border-top-width: 0;
	border-bottom: 1px solid black;
	height: auto;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
	color:#CBD403;
	background-color:#000;
	
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	position: absolute;
	top: 20px;
	right: 5px;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}

.jquerycssmenu a.IsCurrent,
.jquerycssmenu a.IsCurrent:link,
.jquerycssmenu a.IsCurrent:visited,
.jquerycssmenu a.ChildIsCurrent, 
.jquerycssmenu a.ChildIsCurrent:link, 
.jquerycssmenu a.ChildIsCurrent:visited {
	background-color:#000;}

