/*
Whitwells nav
green #7AC148
blue #2D257B
*/
#nav, #nav ul {/*base list*/
	/*float:left;*/ /*positions base list on page*/
	list-style:none; /*stops list from being bulleted*/
	line-height:1.2em; /*spacing between lines within each list*/
	/*background-color:#000;*/ /*text background on all lists, see line 40*/
	font-weight:bold; /*boldness on all lists*/
	/*border:1px solid #ed2029;*/ /*applies to all list-chunk borders*/
	/*border-bottom:0;*/
	/*color:#fff;*/ /* ?? */
	padding:0; /*how far from the list-chunk edges the text appears*/
	margin:30px auto; /*spacing around base list*/
	text-align:left;
	width:150px;
}
#nav a, #nav div.dummy {/*text of (all) links*/
	display:block; /*how to show links (don't change)*/
	width:14em; /* width of active (mouseover) area */
	font-family:verdana, sans-serif; /*font face on all lists*/
	font-size:1.0em; /*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:#000; /*font variation 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:2px; /*0 padding = keep lists together - leave it alone*/
	width:15em; /*width of active region of element (eg hilight region etc)*/
	/*border-bottom:1px solid #2c3795;*/
	border-collapse:separate;
	/*color:#ed2029;*/
	margin:1px;
	border:1px solid #ccc;
	/*background-color:#000;*/
}
#nav li ul { /* all sublevel lists*/
	position:absolute; /**/
	left:-999em; /*hide lists way offscreen to the left*/
	height:auto; /**/
	/*color:#ed2029;*/
	font-weight:bold; /*boldness of sub-level text*/
	/*border:1px solid #ccc;*/
	margin:-2.2em 0 0 15.2em;/* positions flyout ul */
	background-color:transparent; /* background of flyout text only */
}
#nav li li {/*sublevel list elements*/
	padding:2px;
	/*color:#ed2029;*/
	width:14em;
	margin:1px;
	border:1px solid #ccc;
	background-color:#fff;
}
#nav li ul a {
	width:13em; /* width of the hover area */
}
#nav li:hover, #nav li.hover {/* IE7 hack */
	position:static;
}
#nav li:hover ul, #nav li.sfhover ul {
	left:auto;
}
#nav li:hover, #nav li.sfhover {
	background-color: #ccc; /* hover colour */
}

















