#menu {
	position: absolute;
	top: 160px;
    left: 0;
	width: 120px;
	/*font: bold 1.5em "Times New Roman", Times, serif;*/
	font: 1em Arial, Helvetica, sans-serif;
	z-index: 2000;
}

#nav {
	width: 120px;
	margin: auto;
}
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}
#nav a {
	display: block;
	width: 120px;	
	text-decoration: none;
	text-align: right;
	/* top right bottom left */
	padding: 3px 5px 3px 2px;
	color: black;
    background-color: #e3ded4;
    margin-bottom: 10px;
	outline: none;
}
#nav a:hover {
	background-color: #c2bda8;
}
#nav li { /* all list items */
	/*float: right;*/ /*Only use float for horizontal menus*/
	width: 120px; /* width needed or else Opera goes nuts */
}
#nav ul li ul { /* second-level lists */
	position: absolute;
	margin-left: 127px;
    *margin-left: 120px;
	margin-top: -29px;
	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: black;
	padding: 3px 2px 3px 5px;
	border-left: solid white 5px;
	background-color: #e3ded4;
	text-align: left;
    margin-bottom: 2px;
    *border-bottom: solid white 2px;
    *margin-bottom: 0;
}
#nav-design ul li a {
	width: 120px;
}
#nav li ul li a:hover {
	background-color: #c2bda8;
}
#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.about a.navAbout,
body.products a.navProducts, 
body.maintenance a.navMaintenance,
body.glass a.navGlass,
body.floor a.navFloor,
body.materials a.navMaterials,
body.superyachts a.navSuperyachts,
body.contact a.navContact,
body.links a.navLinks {
	background-color: #c2bda8 !important;
}
/*Active colour for sub menu */
body.showroom a.navShowroom,
body.projects a.navProjects,
body.bath a.navBath,
body.kitchens a.navKitchens,
body.bathrooms a.navBathrooms,
body.presentation a.navPresentation,
body.flooring a.navFlooring,
body.marble a.navMarble,
body.onyx a.navOnyx,
body.textures a.navTextures,
body.caesar a.navCaesar,
body.schist a.navSchist,
body.fitouts a.navFitouts,
body.contracts a.navContracts {
	background-color: #c2bda8 !important;
}
