#menu {
	position: relative;
	height: 0;
	text-align: left;
	top: 25px;
	width: 190px;
	/*font: bold 1.5em "Times New Roman", Times, serif;*/
	font: 1.2em Arial, Helvetica, sans-serif;
	z-index: 2000;
}

#nav {
	width: 190px;
	margin: auto;
}
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
}
#nav a {
	display: block;
	width: 190px;	
	text-decoration: none;
	text-align: left;
	/* top right bottom left */
	padding: 1px 0 20px 10px;
	color: #1c214d;
	outline: none;
}
#nav a:hover {
	color: white;
}
#nav li { /* all list items */
	/*float: right;*/ /*Only use float for horizontal menus*/
	width: 195px; /* width needed or else Opera goes nuts */
	background: url(../images/general/button_new.gif) no-repeat top right;
}
#nav ul li ul { /* second-level lists */
	position: absolute;
	margin-left: 200px;
	margin-top: -35px;
	left: -999px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav ul li ul li {
	width: 120px;
}
#nav ul li ul li a {
	width: 120px;
	color: #1c214d;
	padding: 5px 0 5px 5px;
	/*font-size: 12px;*/
	border-bottom-style: solid;
	border-bottom-color: white;
	border-bottom-width: 1px;
	background-color: #8397dd;
	text-align: left;
}
#nav-design ul li a {
	width: 110px;
}
#nav li ul li a:hover {
	color: white;
}
#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999px;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
/*Active colour for main menu */
body.home a.navHome,
body.agm a.navAGM,
body.reports a.navReports, 
body.trustees a.navTrustees,
body.about a.navAbout,
body.profiles a.navProfiles,
body.eligibility a.navEligibility,
body.contact a.navContact,
body.map a.navMap {
	color: #ffcc00 !important;
	/*background-color: #cfdcce;*/
}
/*Active colour for sub menu */
/*body.space a.navSpace,
body.architecture a.navArchitecture,
body.power a.navPower,
body.security a.navSecurity,
body.power-costs a.navPowerCosts,
body.green a.navGreen {
	color: #036 !important;
	background-color: #4d89c5;
}*/