#menu {
	position: absolute;
	height: 100%;
	background: url("../images/common/menu_bk.jpg") repeat-y;
	text-align: center;
	top: 0;
    left: 0;
    width: 176px;
	z-index: 1000;
}
#nav {
    position: absolute;
	width: 136px;
	margin: 160px 0;
    left: 0;
}
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	line-height: 3.5em;
}
#nav a {
	display: block;
	width: 136px;
    height: 49px;	
	text-decoration: none;
	padding-top: 5px;
	color: black;
    background: url("../images/common/visi-arrow.jpg") center no-repeat;
    font-weight: normal;
    font-style: italic;
	font-size: 1.1em;
}
#nav a:hover {
    font-weight: bold;
}
#nav li { /* all list items */
	/*float: right; /*Only use float for horizontal menus*/
	width: 136px; /* width needed or else Opera goes nuts */
}

#nav ul li ul { /* second-level lists */
	position: absolute;
	background-color: white;
	width: 148px;
	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: 148px;
}
#nav ul li ul li a {
	width: 142px;
	color: #006639;
	padding: 5px 0 5px 0;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-color: #d9d9da;
	border-width: 1px;
	text-align: left;
	padding-left: 5px;
}
#nav-design ul li a {
	width: 110px;
}
#nav li ul li a:hover {
	color: white;
	background-color: #4d89c5;
}
/*#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.training a.navTraining,
body.consulting a.navConsulting,
body.store a.navStore,
body.news a.navNews,
body.about a.navAbout,
body.affiliates a.navAffiliates,
body.contact a.navContact {
	font-weight: bold !important;
}
/*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: white !important;
	background-color: #4d89c5;
}*/