#menu {
	position: relative;
	height: 17px;
	background-color: white;
	text-align: center;
	border-top: solid;
	border-color: #091d66;
	border-width: 1px;
	font-weight: normal;
	font-size: 1em;
	z-index: 1000;
	margin-bottom: 15px;
}
#nav {
	width: 960px;
	margin: auto;
}
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}
#nav a {
	display: block;
	width: 102px;	
	text-decoration: none;
	text-align: center;
	/* top right bottom left */
	padding: 1px 0 3px 0;
	color: #091d66;
	outline: none;

}
#nav a:hover {
	background-color: #091d66;
	color: white;
}
#nav li { /* all list items */
	float: left; /*Only use float for horizontal menus*/
	/*width: 95px;*/ /* width needed or else Opera goes nuts */
}
#nav li.narrow {
	width: 102px;
}

#nav li.wide {
	width: 150px;
}
#nav a.wide {
	width: 150px;
}



#nav ul li ul { /* second-level lists */
	position: absolute;
	background-color: white;
	width: 166px;
	margin-left: 0;
	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: 160px;
}
#nav ul li ul li a {
	width: 160px;
	color: #091d66;
	padding: 5px 0 5px 5px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-color: #091d66;
	border-width: 1px;
	text-align: left;
}
#nav ul li ul li a.top {
	border-top: solid 1px #091d66;
}
#nav li ul li a:hover {
	color: white;
	background-color: #091d66;
}
/*#nav li ul ul { /* third-and-above-level lists */
/*	margin: -1em 0 0 10em;
}*/
#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.sealing a.navSealing,
body.polishing a.navPolishing,
body.cleaning a.navCleaning,
body.advice a.navAdvice,
body.important a.navImportant,
body.ashford a.navAshford,
body.specifications a.navSpecifications,
body.projects a.navProjects,
body.testimonials a.navTestimonials,
body.contact a.navContact {
	color: white !important;
	background-color: #091d66;
}
