/* remove the bullets, padding and margins from the lists */
.menu1 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 */
.menu1 li{
vertical-align:vertical;
position:relative;
z-index:100px;
left:2px;
}

/* use the table to position the dropdown list */
.menu1 table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:107px;
top:0px;
}

/* style all the links */
.menu1 a, .menu1 :visited {
	display: block;
	font-size: 11px;
	width: 110px;
	padding: 7px 0;
	color: #000;
	background: #A6C5E2;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
}
/* style the links hover */
.menu1 :hover{
	color: #000000;
	background: #CFEB69;
}

/* hide the sub level links */
.menu1 ul ul {
visibility:hidden;
position:absolute;
width:139px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu1 ul li:hover ul,
.menu1 ul a:hover ul{
visibility:visible;
}
