/* STYLING FOR THE MULTILEVEL DROPDOWN MENU WITH CSS AND JAVASCRIPT
Produces a menu that mimics the standard Thesis navigation menu
Modified and annotated by Mike Nichols - July 10, 2009 
Revised October 4, 2009 */

/* COLOR CHART
#efefef	- off white		- menu strip
						- tabs
#dddddd	- light gray	- tab dividers
						- submenu item dividers
#111111	- almost black	- font color default
						- font hover state
*/

/* Class for Menu */
.slidemenu_class {
	/* font styling */
	font-weight: normal;
	font-size: 11 pt;
	color: #ffffff;
	font-family: Verdana,"Times New Roman",Times,serif;
	text-transform: uppercase;
	/* menu strip color */
	background: #000000;
	/* menu strip width */
	width: 100%;
	/* menu border styling */
	border-color: #DDDDDD;
	border-style: solid;
	border-width: 0 0 2px 2px;
    position: relative;
    z-index: 100;
}

/* Top level menu tabs */
.slidemenu_class ul li a{
	/* background color of tabs (default state) */
	background: #000000;
	/* font color (default state) */
	color: #ffffff;
	/* 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: .625em;
	/* tab width to left of letters */
	padding-left: .625em;
	/* border between tabs */	
	border: 2px solid #ddd; 
	border-left: 0;
	border-bottom: 0;
	/* spacing between letters */
	letter-spacing: 2px;
	/* no underline */
	text-decoration: none;
	/* height of lines */
	/* IE note: if you are having trouble with the menu
	   remove or comment this line out! */
	line-height: 1em;
	/* do not change this! */
	display: block;
}

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

/* Top level tab background and font color during hover state */
.slidemenu_class ul li a:hover {
	background: #ffffff;
	/* font color */
	color: #000000;
	text-decoration: none;
}

/* Submenu level items */
.slidemenu_class ul li ul li a {
	/* font styling */
	font-weight: normal;
	font-size: 1em;
	font-family: Verdana,"Times New Roman",Times,serif;
	/* width of submenu items */
	width: 11em; 
	/* height of submenu items above letters */
	padding-top: .313em;
	/* depth of submenu items below letters */
	padding-bottom: .313em;
	margin: 0;
	border-top-width: 1px;
	/* border between submenu items */
	border-bottom: 1px solid #dddddd;
	border-left: 2px solid #dddddd;
}

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

/* DO NOT CHANGE ANYTHING BELOW THIS LINE! */
/*=========================================*/

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

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

	
/* 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;
}

/* 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;
}