/* Styling for the Multilevel Menu with CSS and JavaScript */

.slidemenu_class {
	/* font styling */
	font-weight: bold;
	text-transform: uppercase;
	font-size: .9em;
	/* change font family to get something other than the inherited font */
	/*font-family: Verdana, Arial, sans-serif;*/
	/* menu strip color */
	background: #E2E0E1;
	/* menu strip width */
	width: 940px;
	margin: -10px 0 0 0;
}

/* Top level list - Do not change! */
.slidemenu_class ul {
	/*margin: -10px 0 0 0;*/
	padding: 0;
	list-style-type: none;
}

/* Top level list items - Do not change! */
.slidemenu_class ul li{
	position: relative;
	display: inline;
	float: left;
}

/* Top level menu tabs */
.slidemenu_class ul li a{
	/* background color of tabs (default state) */
	background: #E6E6E6;
	/* font color (default state) */
	color: #000000;
	/* tab and menu strip height above letters */
	padding-top: .5em;
	/* tab and menu strip depth below letters */
	padding-bottom: .5em;
	/* tab width to right of letters */
	padding-right: .25em;
	/* tab width to left of letters */
	padding-left: .25em;
	/* border between tabs */
	border-right: 1px solid #000000;
	text-decoration: none;
	display: block;
}

/* Top level link & visited font color */
.slidemenu_class ul li a:link, 
.slidemenu_class ul li a:visited {
	color: #000000;
}

/* Top level tab background and font color during hover state */
.slidemenu_class ul li a:hover {
	background: #000000;
	color: #FFFFFF;
}
	
/* First submenu level - Do not change! */
.slidemenu_class ul li ul {
	position: absolute;
	left: 0;
	display: block;
	visibility: hidden;
}

/* Submenu level list items (undo style from Top level List Items) - Do not change! */
.slidemenu_class ul li ul li {
	display: list-item;
	float: none;
}

/* All subsequent submenu levels vertical offset after first submenu level - Do not change! */
.slidemenu_class ul li ul li ul {
	top: 0;
}

/* Submenu level items */
.slidemenu_class ul li ul li a {
	/* font styling */
	font-weight: bold;
	font-size: .9em;
	/* change font family to get something other than the inherited font */
	/*font-family: Verdana, Arial, sans-serif;*/
	/* width of submenu items */
	width: 150px; 
	/* height of submenu items above letters */
	padding-top: .313em;
	/* depth of submenu items below letters */
	padding-bottom: .313em;
	/* border between submenu items */
	border-bottom: 1px solid #000000;
	border-top: none;
	margin: 0;
}

/* Submenu background and font hover colors */
.slidemenu_class ul li ul li a:hover{ 
	background: #000000;
	color: #FFFFFF;
}

/* Down and right arrow images - Do not change! */
.downarrowclass {
	position: absolute;
	top: 12px;
	right: 7px;
}

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

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