	#nav, #nav ul {/*base list*/
		/*REMOVE BELOW LINE TO MAKE LEVEL-1 NAV TRANSPARENT */
		/*background-color: #2C058E;	/*text background on all lists*/
		float: left;									/*positions base list on page*/
		width: 12.2em;			/*how much horizontal space the base list takes up*/
		list-style: none;								/*stops list from being bulleted*/
		line-height: 1.1em;									/*spacing between lines within each list*/
		font-weight: bold;								/*boldness on all lists*/
		padding: 0;										/*how far from the list-chunk edges the text appears*/
		border: 0px solid #9999FF;	/*applies to all list-chunk borders*/
		margin: 0;										/*spacing around base list*/
	}
	#nav a, #nav div.dummyA {/*text of (all) links*/
		display: block;									/*how to show links (don't change)*/
		width: 14.2em;			/* ??? */
		font-family:verdana, sans-serif;				/*font face on all lists*/
		font-size:0.8em;			/*changes font size on all lists... without messing proportions up (as it would if it applied to the above ul section as then all later ems are based on that setting rather than explicitly within themselves)*/
		color: #2C058E;				/*font colour for all links (effectively all text)*/
		text-decoration: none;							/*how to show all links text*/
		padding: 0.2em 0.5em;							/*padding each link's TEXT (topbottom / leftright)*/
		font-weight: bold;
	}
	#nav li {/*all list elements (not lists, list elements) */
		float: none;									/*layout of list (elements relative to each other, not to rest of page) */
		padding: 0;										/*0 padding = keep lists together - leave it alone*/
		width: 12.2em;			/*width of active region of element (eg hilight region etc)*/
	}
	#nav li ul { /* all sublevel lists*/
		background-color: #FFF4B5;	/*text background on all lists*/
		position: absolute;								/**/
		left: -999em;									/*hide lists way offscreen to the left*/
		height: auto;									/**/
		width: 12.2em;			/* ??? */
		font-weight: normal;							/*boldness of sub-level text*/
		border-width: 0.1em;							/*border around sub-level LISTS (not list elements)*/
		margin: -1.2em 0 0 12.1em;/*positioning of popup lists*/
	}
	#nav li li {/*sublevel list elements*/
		padding: 0;
		width: 12.2em
	}
	#nav li ul a {
		width: 14.2em;
	}
	#nav li ul ul {/*sub-sublevel menus*/
		margin: -1.33em 0 0 12.2em;
	}
	#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 {
		left: auto;
	}
	#nav li:hover, #nav li.sfhover {
		background: #9999FF;
	}
