﻿/* remove the bullets, padding and margins from the lists */
.menu ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
	background-position: left;
	float: left;
	position: relative;
	z-index: 100;
	left: 2px;
}

/* use the table to position the dropdown list */
.menu table{
	position: absolute;
	border-collapse: collapse;
	z-index: 80;
	left: -3px;
	top: 30px; 

}

/* style all the links */
.menu :visited {
	font: 100% "trebuchet MS", Arial;
	display: block;
	width: 87px;
	padding: 7px 0;
	color: #FFFFFF;
	background: #545454;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
}
.menu a {
	font: 100% "trebuchet MS", Arial;
	display: block;
	width: 87px;
	padding: 7px 0;
	padding: 7px 0;
	color: #FFFFFF;
	background: #545454;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
}
/* style the links hover */
.menu :hover{
	font: normal normal bold 100% "trebuchet MS", Arial;
	color: #FFFFFF;
	background: #a9a9a9;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width: 87px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul a:hover ul{
visibility:visible;
width: 86px;
}
.menu ul li:hover ul{
visibility:visible;
margin-right: 1px;
width: 86px;
}