#nav, #nav ul { /* all lists */
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	z-index:10;
}

#nav a {
	display:block;
	/*border: 1px solid #555;*/
	white-space:nowrap;
	margin:0;
	/*width: 10em;*/
}
#nav ul{
	list-style:none;
	margin:0;
	padding:0;
	float:left;	
	/*right:100px;*/
	
}
#nav li { /* all list items */
	position:relative;
	min-height: 1px;		/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom;
	/*width: 10em;*/ /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: black;
	width: 1em;
	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: -1em 0 0 10em;
	

}
#nav ul ul 
	{
	margin:0 0 0 0;
	}

#nav ul ul ul
	{
	top:0;
	right:-150px;
	heigh:30px;
	margin: 0 0 0 0;
	
	/*padding:5px;
	border-bottom:#000 1px solid;
	background-image:url(images/bgWhite.png);
	background-repeat:repeat;
	color:#0F0;*/
	}


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

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}


#nav a:link, #nav a:visited, #nav a:active	/* menu at rest */
	{
	/*color: white;
	background-color: royalblue;
	background-image:url(images/menuBarBG.png);
	background-repeat:repeat-x;*/
	/*background-color:#F0F;*/
	text-decoration:none;
	padding-left:6px;
	padding-right:6px;
	
	}
	
#nav a:hover						/* menu on mouse-over  */
	{
	color: white;
	/*background-color:#666;*/
	text-decoration:none;
	
	}	
	
#nav a.top_parent, #nav a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	/*background-image:url(images/menuBarBG.png);
	background-repeat: repeat-x;*/
	/*padding-left:50px;
	padding-right: 50px;*/
	}
	
#nav a.parent 	/* attaches side-arrow to all parents */
	{
		/*background-image:url(images/bgBlack2.png);*/
		background-repeat:repeat;
		color:#FFF;
		padding:5px;
		border-bottom:#FFF 1px solid;
		
	}

#nav a.parent 	/* attaches side-arrow to all parents */
	{
		background-color:#000;
		color:#FFF;
		padding:5px;
		border-bottom:#FFF 1px solid;
		width:140px;
	}
#nav a.parent:hover 	/* attaches side-arrow to all parents */
	{
		background-color:#333;
		color:#FFF;
		padding:5px;
		border-bottom:#FFF 1px solid;
		width:140px;
	}

#nav a.lower_parent 	/* attaches side-arrow to all parents */
	{ 	
		background-color:#FFF;
		color:#000;
		padding:5px;
		border-bottom:#000 1px solid;
		width:140px;
		/*right:200px;*/
		left:200px;
		
	}
#nav a.lower_parent:hover 	/* attaches side-arrow to all parents */
	{ 	
		background-color:#0F0;
		color:#000;
		padding:5px;
		border-bottom:#000 1px solid;
		width:140px;
		/*right:200px;*/
		left:200px;
	}



