.jquerycssmenu {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
}

.jquerycssmenu ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	z-index: 1;
}

/*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 url(images/menu1.jpg) top center repeat-x;
	padding: 7px 28px 9px 29px;
	border-bottom-width: 0;
	color: #000000;
	text-decoration: none;
}

.jquerycssmenu ul li a:hover {
	background-image: url(images/menu2.jpg);
	color: #FFFFFF;
}

/*1st sub level menu*/
.jquerycssmenu ul li ul {
	position: absolute;
	left: 0;
	display: block;
	border: 1px solid #CCCCCC;
	padding: 3px;
	visibility: hidden;
	z-index: 1;
}

/*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;
	z-index: 1;
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a {
	font: normal 13px Verdana;
	width: 180px; /*width of sub menus*/
	background: white;
	color: black;
	padding: 4px 5px;
	margin: 0;
	border-top-width: 0;
	border-bottom: 1px solid #EEEEEE;
}

.jquerycssmenu ul li ul li a:hover { /*sub menus hover style*/
	background: #CCCCCC;
	border-bottom: 1px solid #AAAAAA;
	color: black;
}

/* ######### CSS classes applied to down and right arrow images  ######### */
.downarrowclass {
	position: absolute;
	top: 7px;
	right: 5px;
}

.rightarrowclass {
	position: absolute;
	top: 5px;
	right: 5px;
}