/* CSS Document */
/* mainNav elements */

/* nav placement and background */
#nav {
	z-index:500;
	background-color:rgb(248,246,237);
	position:relative;
	top:0px;
	left:0px;
	width:900px;
	height:33px;
	margin:0 0 0 0;
	padding:0 0 0 0;
}
#nav #navUL{	
	background-image:url(../imgs/navBackground.gif);
	background-position:top right;
	background-repeat:no-repeat;
	position:relative;
	top:0px;
	width:900px;
	height:33px;
	}

/* all ul items */
#nav ul {
	list-style:none;
	margin:0 0 0 0;
	padding:0 0 0 0;
	}
	
/* all li items */
#nav ul li{
	z-index:501;
	float: left !important;
	position:relative;
	top:0px;
	left:0px;
	width:180px;
	color:rgb(6,83,133);
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:8pt;
	text-align:center;
	letter-spacing:1px;
}

/* all li main link options */
#nav ul li.mainDD{
	height:33px;
	width:180px;
	}
#nav ul li.uvaHome{

	}
	
/* all li link options */	
#nav ul li a{
	display:block;
	color:rgb(6,83,133);
	text-decoration:none;
	position:relative;
	top:0px;
	left:0px;
	letter-spacing:-0.25px;
	}

/* specific link options for top level links
make sure to subtrack top padding from overall height */
#nav ul li.mainDD a,
#nav ul li.mainDDLeftStub a,
#nav ul li.mainDDRightStub a{
	padding:9px 0 0 0;
	height:23px;
	}

/*set rollover for left - right and main links */
#nav ul li a:hover{
	color:rgb(255,255,255) !important;
	/*background-color:rgb(103,148,50);*/
	}
#nav ul li:hover a{
	color:rgb(255,255,255);
	}
	
/* hide the second-level lists */
#nav ul li ul.subDD { 
	z-index:502;
	display: none;
	position: absolute;
	top:33px;
	left: 0;
	background-color:rgb(248,246,237) !important;
	width:200px !important;
}
#nav ul li ul li.subLinks{
	width:200px !important;
	}

/* set left / right dropdowns to be under links */
/* makes right dropdown stay on screen in design area */
/* these are only used if the width of the dropdown is not 
divisable by the width of the full nav*/

#nav ul li.mainDDRightStub ul{
	left:-90px !important;
	}
/*
#nav ul li.mainDDLeftStub ul{
	left:5px !important;
	}
*/

/* lists nested under hovered list items */
/* show the second-level lists */
#nav ul li:hover ul.subDD, 
#nav ul li.over ul.subDD{ 
	z-index:2000;
	display: block !important;
	float:left !important;
}

#nav ul li:hover ul li, 
#nav ul li.over ul li{
	z-index:2001;
	background-color:rgb(248,246,237) !important;
}



/* set options for links in second-level lists */
#nav ul li:hover ul li a, 
#nav ul li.over ul li a{
	display:block;
	text-align:left !important;
	text-indent: 8px;
	position:relative;
	left:0px;
	top:0px;
	padding:7px 0 0 0 !important;
	height:20px !important;
	letter-spacing:normal;
	font-size:9px;
}

/* for dropdown list items */
#nav ul li:hover ul li a:hover, 
#nav ul li.over ul li a:hover {
	color:rgb(255,255,255);
	background-color:rgb(8,83,132);
}