.menue {
	height:20px;
	font-size:0.85em; 
	position:relative; 
	z-index:100;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	border-bottom:1px solid #909090;
	border-top:1px solid #909090;
	}

/* remove all the bullets, borders and padding from the default list styling */
.menue ul {
	padding:0;
	margin:0;
	list-style-type:none;
	}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menue positon */
.menue li {
	float:left;
	position:relative;
	}
/* style the links for the top level */
.menue a, .menue a:visited {
	display:block;
	font-size:11px;
	text-decoration:none;
	color:#909090;
	width:138px; 
	height:20px;
	padding-left:10px; 
	line-height:20px;
	font-weight:bold;
	}
.menue #aktiv {
	display:block;
	font-size:11px;
	text-decoration:none;
	color:#000;
	width:138px; 
	height:20px;
	padding-left:10px; 
	line-height:20px;
	font-weight:bold;
	z-index:100;
	}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menue ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:20px;
	left:0;
	width:149px;
	border-top:1px solid #909090;
	}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menue table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
	z-index:100;
}
* html .menue tbody {
	height:1px;
	z-index:100;
}
/* style the second level links */
.menue ul ul a, .menue ul ul a:visited {
	background:#f4f4f4;
	color:#000;
	height:auto;
	line-height:1em;
	padding:5px 10px; 
	width:158px;
	font-weight:normal;
	border-bottom:1px solid #909090;
z-index:100;
	}
/* style the top level hover */
.menue a:hover, .menue ul ul a:hover{color:#000; background:#fff;}
.menue :hover > a, .menue ul ul :hover > a {color:#000;background:#fff;}

/* make the second level visible when hover on first level list OR link */
.menue ul li:hover ul,
.menue ul a:hover ul{visibility:visible; }
.menue #aktiv ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.menue ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menue ul :hover ul :hover ul{ visibility:visible;}


