/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
	float:left;
	position:relative;
	z-index:100;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.menu ul li a, .menu ul li a:visited {
	font-family: Verdana, Helvetica, sans-serif;
	font-size:11px;
	text-align: center;
	vertical-align: middle;
	display:block;
	text-decoration:none;
	color:#FFFFFF;
	height:35px;
	padding-top: 0px;
	padding-left:10px;
	padding-right:10px;
	text-align:center;
}
.menu ul li:hover ul li a {
	display:block;
	padding-top: 6px;
	z-index:10;
}
.menu ul li:hover ul li a:hover {
	color:#FF0000;
}
.menu a, .menu :visited {
	display:block;
}
/* style the links hover */
.menu ul li:hover a {
	font-family: Verdana, Helvetica, sans-serif;
	font-size:11px;
	text-align: center;
	vertical-align: middle;
	display:block;
	text-decoration:none;
	color:#FFFFFF;
	height:17px;
	padding-top: 9px;
	padding-left:10px;
	padding-right:10px;
    text-align:center;
}
/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:50px;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;

