.menu {
	font-family: Arial;
	text-align: center;
	z-index: 2;
}


/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding: 0px;
	margin: 0px;
	position: absolute;
	top: 115px;
	left: 368px;
	list-style-type: none;
	z-index: 100;
}

/* a hack for IE5.5 */
* html .menu ul {
	left: 365px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	margin-left: 4px;
	font-weight: bold;
	float: left;
	width: 87px;
	position: relative;
	list-style-type: none;
	background: #B0AA92;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display: block;
	width: 85px;
	line-height: 29px;
	color: #000;
	text-decoration: none;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width: 87px;
	w\idth: 87px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 29px;
	left: -35px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position: absolute;
	top: 0px;
	left: 0px;
	border-collapse: collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	color: #000;
	height: auto;
	line-height: 16px;
	padding: 5px 10px;
	width: 135px;
	background: #B0AA92;
	text-decoration: none;
	border-bottom: 1px solid #555;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
	width: 155px;
	w\idth: 155px;
}

.menu ul ul li {
	margin: 0;
	text-align: center;
	width: 135px;
}

.menu ul ul a:hover {
	width: 135px;
	background: #aaa;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a:hover {
	width: 155px;
	w\idth: 155px;
}

/* style the top level hover */
.menu ul a:hover {
	background: transparent;
}

.menu :hover > a{
	background: transparent;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility: visible;
	opacity: 0.9;
	-moz-opacity: 0.9;
	-khtml-opacity: 0.9;
	filter: alpha(opacity=90);
	border-top: 1px solid #555;
	border-left: 1px solid #555;
	border-right: 1px solid #555;
	width: 155px;
	height: auto;
}
