/* colors */
#menue1 a.alevel2 {
	background: #2b5287;
}
#menue1 a.alevel2:hover {
	background: #0e2f63;
}
#menue1 ul.level2 li.active a.alevel2 {
	background: #0e2f63;
}

/* design */
#menue1 {
	position: relative; 
	z-index: 100;
	height: 20px;
}
* html #menue1 ul ul {
	top: 20px;	/* equal to #menue1 height */
}
#menue1 li {
	float: left;
	width: auto;
	position: relative;
}
#menue1 a {
	display: block;
	float: left;
}
* html #menue1 a {
	height: 1px;
}
#menue1 ul.level2 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 191px;
	height: 0;
}
#menue1 li.lilevel2 {
	padding: 0;
}
#menue1 a.alevel2 {
	width: 190px;
	padding: 5px 0 5px 4px;
}

/* functionality */
#menue1 ul.level2 {
	visibility: hidden;
}
#menue1 li.lilevel1:hover ul,
#menue1 a.alevel1:hover ul,
#menue1 a.alevel1:hover {
	visibility: visible;
}


/* style the table so that it takes no part in the layout - required for IE to work */
/*#menue1 table {  position: absolute; top: 0; left: 0; border-collapse: collapse;  }*/