﻿/* remove the bullets, padding and margins from the lists */
.menu ul{
	list-style-type: none;
	padding: 0 0 0 2px;
	margin: 12px 0px 0px 0px;
	font-family: Arial;
	margin-left: 100px;
	background-color: #FFFFFF;
	font-size: large;
	color: #FFFFFF;
}
/* 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:95;

}

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

/* style all the links */
.menu :visited {
	display: block;
	font-size: 11px;
	width: 111px;
	padding: 7px 1px 7px 1px;
	color: #000000;
	text-decoration: none;
	margin-right: 0;
	text-align: center;
	background-color: #CCCCCC;
}
.menu a {
	display: block;
	font-size: 11px;
	width: 111px;
	padding: 7px 1px 7px 1px;
	color: #000000;
	text-decoration: none;
	margin-right: ;
	text-align: center;
	background-color: #C0C0C0;
}
/* style the links hover */
.menu :hover{
	color: #000000;
	background-color: #CCFFFF;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:112px;
height:0px;
}
/* make the sub level visible on hover list or link */
.menu ul a:hover ul{
visibility:visible;
}
.menu ul li:hover ul{
visibility:visible;
}