/*
 * Don't let your browser chuck a wobbly.
 */
	#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		float : left; 
		width: 100px;
	}
	
	#nav li { /* all list items */
		position : relative;
		float : left;
		line-height : 1.25em;
		margin-bottom : -1px;
		width: 100px; 
	}
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 90px;
		margin-top : -1.35em;
	}
	
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	
	#nav li a {
	/*
		width: 80px;
		w\idth : 84px;
	*/
		display : block;
		color: rgb( 136, 50, 172 );
		/* font-weight : bold; */
		font-family: Arial, Helvetica, sans-serif;
		font-size: 0.8em;
		text-decoration : none;
		/* background-color : white; */
		/* background-color: rgb( 255, 204, 255 ); /* light pink */
		border : 1px solid rgb( 204, 204, 204 );
		padding : 0 0.5em;
	}
	
	#nav li a:hover {
		/* color : white; */
		background-color : rgb( 222, 200, 225 ) /* rgb( 82, 0, 122 ); */
	}
	
	#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;
	}
	.UrHere {
      /* color : white !important; */
	  background-color : rgb( 222, 200, 225 ) !important;
	}
