/*  http://www.dynamicdrive.com/style/ */

.jqueryslidemenu{
	font: 12px Arial;			/* effects IE, not FireFox  */
	background: #;				/* effects IE, not FireFox  */
	width: 990px;				/* does not effects both IE and FireFox  */
	border: 0px solid #FF0000;	/* does not effects both IE and FireFox  */
}

.jqueryslidemenu ul{
	margin: 0px;
	padding: 0px;
	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: #; 					/* background of tabs (default state) effects both IE and FireFox  */
	/*color: #FF0000;  				 text of tabs (default state) */
	padding: 6px 18px 7px 15px; 	/* top, right, bottom, left,  */
	border-right: 0px solid #b9b391;
	text-decoration: none;
}

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

.jqueryslidemenu ul li a:link {		/* tab link menu link items style */
	color: #f6f6e3;
} 
.jqueryslidemenu ul li a:visited {
	color: #f6f6e3;
}
.jqueryslidemenu ul li a:hover {	/* TAB and sub menu links during hover state */
	background: #f9bc30; 		 
	color: #4a5460;	
									/* effects FireFox with Tabs (not in submenus) Both in tabs and submenu with IE*/
}
.jqueryslidemenu ul li ul {		 /* ####### submenu ####### */
	position: absolute;
	left: 0px;
	display: block;
	visibility: hidden;
}

.jqueryslidemenu ul li ul a:visited {	/* effects both IE and FireFox  */
	/*color: #FFF;  */
}
.jqueryslidemenu ul li ul li{ 		/* Submenu 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 sub menu  */
	top: 0;
}

.jqueryslidemenu ul li ul li a { 	/* ####### Submenu links style ###### */
	font: normal 12px Arial;
	width: 200px; 					/*width of sub menus*/
	/* color: #FF0000; 				does not effects both IE and FireFox  */
	background: #4a5460;  	 
	color: #f6f6e3;			 		
	padding: 5px 15px 8px 18px;
	margin: 0px 30px 0px 0px;
	margin-left: 0px;
	border-left: 0px solid #bdc2b7;
	border-right: 0px solid #bdc2b7;
	border-bottom: 1px solid #fff;
}

.jqueryslidemenuz ul li ul li a:hover{ /* 2nd sub menus hover style*/
	 /*background: #54B513;green*/
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	position: absolute;
	top: 12px;
	right: 7px;
}

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

