/* Smooth Navigational Menu- By Dynamic Drive DHTML code library: http://www.dynamicdrive.com */
/* Modified and annotated by Mike Nichols Oct 6, 2009 for the Vertical Multilevel Dropdown Menu */

/* COLORS
#FFFFFF	- white	
		- menu items default
#888888	- gray			
		- submenu item dividers
#EFCF00	- light gold			
		- hovered-over menu item
#CDB91A	- dark gold
		- selected menu item
*/
/* Main class definition */
.ddsmoothmenu-v {
        z-index:1;
}
.ddsmoothmenu-v ul{
	/* Main Menu Item widths */
	width: 197px;
	/* font size */
	font-size: 1.0em;
	/* font bold or not*/
	font-weight: bold;
	/* font if different from default */
	/*font-family: Verdana, Arial, sans-serif;*/
	/* do not change these! */
	list-style-type: none;
	margin: 0;
	padding: 0;
	padding-left:15px;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a{
	/* font color */
	color: #FFFFFF;
	/* underline or not */
	text-decoration: none;
	/* height of menu bars */
	padding: 6px;
	padding-right:24px;
	/* set the distance between menu bars */
	margin-bottom: -6px;
	/* menu item borders */
	/* do not change these! */
	display: block;
	outline:none;
	overflow: auto; /*force hasLayout in IE7 */
}

/* default background and font color of menu items*/
.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active{
	/* background */
	background:#E5E5E5 url(../images/navboxes.jpg) no-repeat top right;
	/* font color */
	color: #000000;
}
.ddsmoothmenu-v ul li ul li a:link, .ddsmoothmenu-v ul li ul li a:visited, .ddsmoothmenu-v ul li ul li a:active{
	/* background */
	background-image:none;
	background-color:#E5E5E5;
	border-bottom:2px solid #D8D8D8;
}
.ddsmoothmenu-v ul li ul {
	background-color:#FFFFFF;
}

/* background and font color of currently selected menu item */
.ddsmoothmenu-v ul li a.selected {
	/* background */
	background:#E5E5E5 url(../images/navover.jpg) no-repeat top right;
	/* font color */
	color: white;
}

/*background and font color of menu items on mouseover (hover state)*/
.ddsmoothmenu-v ul li a:hover{
	/* background */
	background:#E5E5E5 url(../images/navover.jpg) no-repeat top right;
	/* font color */
	color: #FFFFFF;
	/* underline or not */
	text-decoration: none;
}
.ddsmoothmenu-v ul li ul li a:hover{
	/* background */
	background-color:#CC0000;
	/* font color */
	color: #FFFFFF;
	/* underline or not */
	text-decoration: none;
}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
	/*Sub Menu Items width */
	width: 220px;
	/* font weight */
	font-weight: bold;
	/* font size */
	font-size: 1em;
	/* do not change these! */
	position: absolute;
	top: 0;
	left: 0;
	margin-left:0;
	margin-top:0;
	visibility: hidden;
}

/* ====== DO NOT CHANGE ANYTHING BELOW THIS LINE ===== */
/* positioning of pulldowns */
.ddsmoothmenu-v ul li{
	position: relative;
	left:-15px;
}

/* Hack for IE \*/
* html .ddsmoothmenu-v ul li { float: left; height: 1%; }
* html .ddsmoothmenu-v ul li a { height: 1%; }
/* End */
