#nav, #nav ul {/*base list*/
	/*background-color: #FFFFFF;*/						/*text background on all lists*/
	float: left;									/*positions base list on page*/
	list-style: none;								/*stops list from being bulleted*/
	line-height:1.6em;									/*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: 0;										/*applies to all list-chunk borders*/
	margin: 0;										/*spacing around base list*/
	width:auto;
}
#nav li {
	float: left;									/*layout of list (elements relative to each other, not to rest of page) */
	padding: 0;										/*0 padding = keep lists together - leave it alone*/
	width: 14em;									/*width of active region of element (eg hilight region etc)*/
}

#nav li.sub {
	float: left;									/*layout of list (elements relative to each other, not to rest of page) */
	padding: 0 0 0 7px;								/*0 padding = keep lists together - leave it alone*/
	width: 14em;									/*width of active region of element (eg hilight region etc)*/
	color: #8D5065;								
}

#nav a, #nav div.dummyA {/*text of (all) links*/
	display: block;									/*how to show links (don't change)*/
	width: 11.2em;									/* ??? */
	font-family:verdana, sans-serif;				/*font face on all lists*/
	font-size:1.1em;								/*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: #43251F;									/*font colour for all links (effectively all text)*/
	text-decoration: none;							/*how to show all links text*/
	padding: 0.2em 0 0.2em 0.5em;					/*padding each link's TEXT (topbottom / leftright)*/
	font-weight: bold;
}
#nav li li a {
	padding: 0.2em 0.5em 0.2em 1em;					/*padding each link's TEXT (topbottom / leftright)*/
}

/* HOVER BACKGROUNDS */
#nav li:hover, #nav li.sfhover {/*base-level hovered elements*/
	background-color: #43251F;
}
#nav li:hover li, #nav li.sfhover li {/*children of hovered element*/
	background-color: #43251F;
}
#nav li li:hover, #nav li li.sfhover {/*child-level hovered elements*/
	background-color: #43251F;
}

/* HOVER TEXT */
#nav li:hover a, #nav li.sfhover a {/*base-level hovered elements*/
	color:#A59787;
}
#nav li:hover li a, #nav li.sfhover li a {/*children of hovered element*/
	color:#A59787;
}
#nav li li:hover a, #nav li li.sfhover a {/*child-level hovered elements*/
	color:#A59787;
}