/* remove the bullets, padding and margins from the lists */
.menue1 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 */
.menue1 li{
vertical-align:vertical;
position:relative;
z-index:20px;
left:0.5px;
}

/* use the table to position the dropdown list */
.menue1 table{
position:absolute;
border-collapse:collapse;
z-index:15;
left:140px;
top:0px;
}

/* style all the links */
.menue1 a, .menue1 :visited {
	display: block;
	height:5px;
	font-size: 11px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	width: 140px;
	padding: 5px 0;
	color: Black;
/*	background: transparent; */
	background: #A6C5E2;
	text-decoration: none;
	margin-right: 1px;
	text-align: left;
}
/* style the links hover */
.menue1 :hover{
	color: Blue;
/*	background: #CFEB69; */
	background: #cccccc;
}

/* hide the sub level links */
.menue1 ul ul {
visibility:hidden;
position:absolute;
width:150px;
height:0;
}
/* make the sub level visible on hover list or link */
.menue1 ul li:hover ul,
.menue1 ul a:hover ul{
visibility:visible;
}
