/*******************************VERTICAL MENU****************************/

/* Container for the menu - if width is set too wide buttons will wrap */
.jqueryslidemenu2{
	width: 261px;
	background-color: #686659;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	background-image: url(../images/menu_watermark.jpg);
	background-position: bottom;
	background-repeat: no-repeat;
	text-transform: uppercase;
}

.jqueryslidemenu2 ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 261px;
}

html .jqueryslidemenu2{
	height: 1%;
	width: 261px;
} /*Holly Hack for IE7 and below*/

/*Top level list items*/
.jqueryslidemenu2 ul li{
	position: relative;
	display: inline;
	float: left;
	width: 261px;
	background-color: #686659;
}

/*Top level menu link items style - button width is set here*/
.jqueryslidemenu2 ul li a{
	display: inline-block; /*background of tabs (default state)*/
	color: white;
	color: #426BA4;
	text-decoration: none;
	width:259px;   /*  176px (from above) - 8px - 8px (from padding) = 160;  be sure to edit right set off line 33 menu.js*/
	font-weight: bold;
	font-size: 16px;	/*background-color: #456593;*/
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 16px;
	margin:0;
}

* html .jqueryslidemenu2 ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
	background-color: #686659;
	width: 259px;
}

.jqueryslidemenu2 ul li a:link, .jqueryslidemenu2 ul li a:visited{
	color: white;
	width: 260px;
}

.jqueryslidemenu2 ul li a:hover{
	color: white;
	background-image: url(../images/btn_hover.jpg);
	width: 259px;
	background-repeat: repeat-y;
}
	
/*1st sub level menu*/
.jqueryslidemenu2 ul li ul{
	position: absolute;
	left: 0;
	display: block;
	visibility: hidden;
	z-index:100;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jqueryslidemenu2 ul li ul li{
	display: list-item;
	left:106px;
	margin-bottom:0px;
}

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

/* Sub level menu links style */
.jqueryslidemenu2 ul li ul li a{
	font: normal 12px Tahoma, Verdana, Arial, Helvetica, sans-serif;
	width: 245px; /*width of sub menus*/
	padding: 7px 7px 7px 20px;
	margin: 0;
	border-top-width: 0;
	background-color: #5B594D;
}

.jqueryslidemenu2 ul li ul li a:hover{ /*sub menus hover style*/
	color: white;
	background-color: #6AC8FF;
}

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

.downarrowclass2{   /*arrow image paths declared in menu.js*/
	position: absolute;
	top: 8px;
	right: 15px;
}

.rightarrowclass2{   /*arrow image paths declared in menu.js*/
	position: absolute;
	top: 12px;
	right: 10px;
}
