﻿.jqueryslidemenu {
	font: 11px Verdana;		/* font for main items  */	
	font-variant: small-caps;
	/* background: #FFCC00; */
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.jqueryslidemenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.jqueryslidemenu ul li {		/*Top level list items*/
	position: relative;
	display: inline;
	float: left;
}

.jqueryslidemenu ul li a {		/*Top level menu link items style*/
	display: block;
	background: #567a1a;		/*background of tabs (default state)*/
	padding: 4px 20px;		/* defines space around text in menu */	
	border-right: 1px solid #842418;		/* vertical line between items  */	
	/*  color: #333;  */
	text-decoration: none;
	
	background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#666666), to(#666666), color-stop(.6,#333));
	background: -moz-linear-gradient(19% 75% 90deg,#6F9E21, #4A6916, #476315 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 84%, from(#567A1A), to(#5F871D), color-stop(.6,#395212));
}
* html .jqueryslidemenu ul li a {	/*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}
.jqueryslidemenu ul li a:link, .jqueryslidemenu ul li a:visited {
	color: #ddd; /* color of font */;
	font-variant: small-caps;
	font-size: 10px;
}
.jqueryslidemenu ul li a:hover {
	background:#FF6600;		/*tab link background during hover state*/	
	color: white;
}
.jqueryslidemenu ul li ul {		/*1st sub level menu*/
	padding-top:2px;
	padding-left:10px;
	position:absolute;
	z-index:5000;
	left: 0;
	display: block;
	visibility: hidden;
}
.jqueryslidemenu ul li ul li {		/*Sub level menu list items (undo style from Top level List Items)*/
	display: list-item;
	float: none;	
}
.jqueryslidemenu ul li ul li ul {		/*All subsequent sub menu levels vertical offset after 1st level sub menu */
	top: 0;
	margin-left:-20px;	/* this defines the shift in the 3rd+ level */
	z-index:6000;
}

.jqueryslidemenu ul li ul li a {		/* Sub level menu links style */
	font: normal 13px Verdana;
	width: 160px; /*width of sub menus*/;
	padding: 5px;
	margin: 0;
	border-top-width: 0;
	border-bottom: 2px solid #431457;
}
.jqueryslidemenuz ul li ul li a:hover {		/*sub menus hover style*/
	background: #eff9ff;
	color: black;
}

/* ######### CSS classes applied to down and right arrow images  ######### */
.downarrowclass {
	position: absolute;
	top: 12px;
	right: 7px;
}
.rightarrowclass {
	position: absolute;
	top: 6px;
	right: 5px;
}

