﻿.menuz {
	width: 670px;
	margin-right: auto;
	margin-left: auto;
	clear: both;
}

/* remove the bullets, padding and margins from the lists */
.menuz ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menuz li {
	float: left;
	position: relative;
	z-index: 100;
}
/* use the table to position the dropdown list */
.menuz table {
	position: absolute;
	border-collapse: collapse;
	z-index: 80;
	left: -1px;
	top: 25px;
}
/* style all the links */
.menuz :visited {
	display: block;
	font-size: 0.8em;
	width: 110px;
	padding: 7px 0;
	color: #000;
	background: #b9cfa1;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
}
.menuz a {
	display: block;
	font-size: 0.8em;
	width: 110px;
	padding: 7px 0;
	color: #8B0000;
	background: #b9cfa1;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
}
/* style the links hover */
.menuz :hover {
	color: #000000;
	background: #261;
}
/* hide the sub level links */
.menuz ul ul {
	visibility: hidden;
	display: none;
	position: absolute;
	width: 139px;
	height: 0;
}
/* make the sub level visible on hover list or link */
.menuz ul a:hover ul {
	visibility: visible;
	display: block;
}
.menuz ul li:hover ul {
	visibility: visible;
	display: block; 
}

