.menu {	
	position: relative;
	border: 0px;
	padding: 0px;
	z-index: 100;
}

.menu ul { 
	list-style-type: none;
	margin: 0px;
}

.menu li {
	position: relative;
	display: inline;
	margin: 0px;
	padding: 0px;
	width: 190px;
	font-weight: bold;
	float: left;
}

.menu li li {
	width: 225px;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display: block;
	color: #000000;
	height: 16px;
	padding-top: 5px;
	padding-left: 10px;
	padding-bottom: 5px;
	text-decoration: none;	
	border-top: 1px;
	border-left: 1px;
	border-right: 0px;
	border-bottom: 0px;
	border-style: solid;
	border-color: #C6C3A2;
	background-color: #C6C3A2;
}

/* style the top level hover */
.menu a:hover { 
	color: #FFFFFF;
	background-color: #9D9B84;
	text-decoration: none;
	border-top: 1px;
	border-left: 1px;
	border-right: 0px;
	border-bottom: 0px;
	border-style: solid;
	border-color: #FFFFFF;
}

.menu ul li:hover { 
	color: #FFFFFF;
	background-color: #9D9B84;
	text-decoration: none;
}

.menu :hover > a {
	color: #FFFFFF;
	background-color: #9D9B84;
	text-decoration: none;
}

.menu ul li:hover > a {
	color: #FFFFFF;
	background-color: #9D9B84;
	text-decoration: none;
	border-top: 1px;
	border-left: 1px;
	border-right: 0px;
	border-bottom: 0px;
	border-style: solid;
	border-color: #FFFFFF;
}

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

/* style the second level background */
.menu ul ul a, .menu ul ul a:visited {
	display: block;
	color: #000000;
	background-color: #C6C3A2;
	height: 16px;
	padding-top: 5px;
	padding-left: 10px;
	text-decoration: none;	
	border-top: 1px;
	border-left: 1px;
	border-right: 0px;
	border-bottom: 0px;
	border-style: solid;
	border-color: #FFFFFF;
}

.menu ul ul a:hover { 
	color: #FFFFFF;
	background-color: #9D9B84;
	text-decoration: none;
	border-top: 1px;
	border-left: 1px;
	border-right: 0px;
	border-bottom: 0px;
	border-style: solid;
	border-color: #FFFFFF;
}

/* 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;
}

.menu ul li:hover ul,
.menu ul a:hover ul{visibility:visible; }