#nav, #nav ul {/*base list*/
	float: left;									/*positions base list on page*/
	width: 10.5em;									/*how much horizontal space the base list takes up*/
	list-style: none;								/*stops list from being bulleted*/
	line-height: 1;									/*spacing between lines within each list*/
	background-color: #FFFFFF;						/*text background on all lists*/
	font-weight: bold;								/*boldness on all lists*/
	border: 1px solid #AAAAAA;						/*applies to all list-chunk borders*/
	padding: 0;										/*how far from the list-chunk edges the text appears*/
	margin: 0;										/*spacing around base list*/
}
#nav a, #nav div.dummy {/*text of (all) links*/
	display: block;									/*how to show links (don't change)*/
	width: 13.5em;									/* ??? */
	font-family:verdana, sans-serif;				/*font face on all lists*/
	font-size:0.75em;								/*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: #6600AA;;									/*font colour for all links (effectively all text)*/
	text-decoration: none;							/*how to show all links text*/
	padding: 0.3em 0 0.3em 0.5em;							/*padding each link's TEXT (topbottom / leftright)*/
	margin:0;
}
#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: 10.5em;									/*width of active region of element (eg hilight region etc)*/
	border-bottom:1px solid #AAAAAA;
	border-collapse:separate;
	padding: 0;
	margin: 0;
	border-bottom:1px solid #AAAAAA;
}
#nav li.downItem {
	background-color:#CCEEFF;
}
#nav li.downParent {
	background-color:#CCEEFF;
}
#nav li.parentOfDownItem {
	background-color:#E0F0FF;
}
#nav li.separator {
	border-top:2px solid #000066;
}
#nav li ul { /* all sublevel lists*/
	position: absolute;								/**/
	left: -999em;									/*hide lists way offscreen to the left*/
	height: auto;									/**/
	width: 10.5em;									/* ??? */
	font-weight: normal;							/*boldness of sub-level text*/
	border-left:2px solid #AAAAAA;
	margin: -1.35em 0 0 10.5em;						/*positioning of popup lists*/
}
#nav li li {/*sublevel list elements*/
	padding: 0;
	width: 10.5em
}
#nav li ul a {
	width: 13.5em;
}
#nav li ul ul {/*sub-sublevel menus*/
	margin: -1.3em 0 0 10.5em;
}
#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: #BBDDFF;
}
