﻿/* remove the bullets, padding and margins from the lists */
.menue 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 */
.menue li{
vertical-align:vertical;
position:relative;
z-index:20px;
left:0.5px;
}

/* use the table to position the dropdown list */
.menue table{
position:absolute;
border-collapse:collapse;
z-index:10;
left:160px;
top:0px;

}

/* style all the links */
.menue a, .menue :visited {
	display: block;
	font-size: 14px;
	font-family:Times New Roman;
	width: 160px;
	padding: 5px 0;
	color: blue;
	background: transparent;
	text-decoration: none;
	margin-right: 1px;
	text-align: left;
}
/* style the links hover */
.menue :hover{
	color: #000000;
	background: #CFEB69;
}

/* hide the sub level links */
.menue ul ul {
visibility:hidden;
position:absolute;
width:200px;
height:0;
}
/* make the sub level visible on hover list or link */
.menue ul li:hover ul,
.menue ul a:hover ul{
visibility:visible;
}
