* html .jqueryslidemenu ul li a{
	display: inline-block; /*IE6 hack to get sub menu links to behave correctly*/
}

/* ######### CSS classes applied to down and right arrow images  ######### */
.downarrowclass{ position: absolute; right: 7px; top: 12px; }

.jqueryslidemenu{
	background: black; /*font: bold 12px Verdana;*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	position: absolute;
	text-transform: uppercase;
	width: 100%;
	z-index: 20;
}

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

/*Top level list items*/
.jqueryslidemenu ul li{ display: inline; float: left; position: relative; }

/*Top level menu link items style*/
.jqueryslidemenu ul li a{
	background: black; /*background of tabs (default state)*/
	border-right: 1px solid #778;
	color: white;
	color: #2d2b2b;
	display: block; /*padding: 8px 10px;*/
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	width: 114px;
}

.jqueryslidemenu ul li a b{ color: #c8970c; font-weight: normal; }

.jqueryslidemenu ul li a:link, .jqueryslidemenu ul li a:visited{ color: white; }

.jqueryslidemenu ul li a:hover{
	background: black; /*tab link background during hover state*/
	color: #c09306;
}

/*1st sub level menu*/
.jqueryslidemenu ul li ul{
	display: block;
	filter: alpha(opacity=95);
	left: 0;
	-moz-opacity: .95;
	opacity: .95;
	position: absolute;
	visibility: hidden;
}

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

/* Sub level menu links style */
.jqueryslidemenu ul li ul li a{
	background-color: #303030;
	border-bottom: 1px solid black;
	border-top-width: 0; /*font: normal 13px Verdana;*/
	font-size: 10px;
	line-height: 20px; /*padding: 5px;*/
	margin: 0;
	text-align: center;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jqueryslidemenu ul li ul li ul{ top: 0; }

.jqueryslidemenuz ul li ul li a:hover{
	background: #eff9ff; /*sub menus hover style*/
	color: black;
}

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