@charset "utf-8";
/* Left Nav Menu for NASPE */


.leftNavMenu{
	padding: 0;
	padding-bottom:20px;
	width: 240px; /*width of menu*/
}
.leftNavMenu div#leftNavTitle{
	color: #fff;
	font-size:175%;
	font-family:"Times New Roman", Times, serif;
	text-align:center;
	font-style:italic;
}
.nav-v ul{
	margin: 0;
	padding: 0;
	width: 245px; /* Main Menu Item widths */
	list-style-type: none;
	font-size:100%;
	font-weight:bold;

}
 
.nav-v ul li{
	position: relative;
}

/* Top level menu links style */
.nav-v ul li a{
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	color: #fff;
	text-decoration: none;
	padding:4px 20px 10px 20px;
	border-right: 1px solid #778;
}

.nav-v ul li a:link, .nav-v ul li a:visited, .nav-v ul li a:active{
	background: #003054 url(/ui/naspe/graphics/BG_leftNavItem_devider.gif) center bottom no-repeat;; /*background of menu items (default state)*/
	color: #fff;
}


.nav-v ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: #ffb812; 
	color: #000;
}

.nav-v ul li a:hover{
	background:#ffb812; /*background of menu items during onmouseover (hover state)*/
	color: #000;
}

/*Sub level menu items */
.nav-v ul li ul{
	position: absolute;
	width: 170px; /*Sub Menu Items width */
	top: 0;
	font-weight: normal;
	visibility: hidden;
}

 
/* Holly Hack for IE \*/
* html .nav-v ul li { float: left; height: 1%; }
* html .nav-v ul li a { height: 1%; }
/* End */
