/* CSS Document */
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	
	font-size: 8pt;
}
#nav {
width: 950px;
float: left;
background:  url("images/menu_background.jpg") top left repeat-x;
height: 30px;
}

/* styles for all LI's in the list */
#nav li
{

	position: relative;
	list-style: none;
	float: left;
	width: 80px; /* Width of Menu Items */

	
	}
	#nav li a:hover {  /* only top level lists */

background:  url("images/menu_hover.jpg") bottom left repeat-x;

	
}
#nav li.width
{

	position: relative;
	list-style: none;
	float: left;
	width: 160px; /* Width of Menu Items */
	}
	
	#nav li.student
{

	position: relative;
	list-style: none;
	float: left;
	width: 230px; /* Width of Menu Items */
	}
	#nav li li
{

	width: 200px; /* Width of Menu Items */
	}
	

#nav li a {  /* only top level lists */
padding-top: 7px;
display: block;
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	border-right: 1px solid  #fff;
	height: 22px;
	}
	
	#nav li a.login {  /* only top level lists */
padding-top: 7px;
display: block;
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	border-right: 1px solid  #5C6485;
	height: 22px;
	}

#nav li a:hover {  /* only top level lists */

color: #fff;
}


#nav  li li a {  /* second level lists */
	display: block;
width: 188px;
	color: #5C6485;
	text-align: left;
	border-top: 1px solid #5C6485;
	border-right: 1px solid #5C6485;
	border-left: 1px solid #5C6485;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 5px;
	font-weight: normal;
	height: auto;
	background-color: #fff;
}


#nav li ul { /* second-level lists */
	position: absolute;
	background-color: #fff;
	border-bottom: 1px solid #5C6485;
	
	
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	}
	

#nav li ul ul { /* third-and-above-level lists */
	margin: -23px 0 0 159px;
	width: 182px;
border-bottom: 1px solid #000;
}
#nav  li li li a {  /* third level lists */
	
	width: 170px;
	
	
}



#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	
}
#nav li li a:hover, #nav li li.sfhover {
background: #5C6485;
color: #FFF;


}


