.jquerycssmenu{
font: bold 8pt Arial;
border-bottom: 0px solid black;
padding: 0px; /*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: right;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
display: block;
background: white top center ; /*background of tabs (default state)*/
padding: 2px 2px 0px 0px;
margin-right: 10px; /*spacing between tabs*/
border: 0px solid #778;
border-bottom-width: 0;
color: #ff0099;
text-decoration: none;
}

	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
padding-bottom: 8 px;
left: 0;
display: block;
visibility: hidden;
border-top: 1px dotted #cccccc;
}

/*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: normal 7pt Arial;
width: 60px; /*width of sub menus*/
background: white;
color: black;
padding: 5px 5px;
margin: 0;
border-top-width: 0;
border-bottom: 1px dotted #666666;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
	background: #33ff00;
	color: white;
	font-family: Arial;
	font-size: 7pt;
	font-weight: bolder;
}
