

.topmenul1, .topmenul2 {
	list-style:none;			/* Default styles for all menu's */
	margin:0px;
	padding:1px 0px;
	border-bottom: 1px solid #eceae4;
	
}

.topmenul1 li {

	border-bottom: 1px solid #eceae4;

	background-color: #eceae4;
	padding:4px 0px;
	float:left;			/* First level menu's needs to float left */
	position:relative;			/* Relative positiong because lower level menu's needs to be absolute */
}

/* First level colors for link tags */
.topmenul1 a {
	padding:4px 0px;

	text-align:center;
	display: block;
	width: 120px;
	height: 12px;
	font-family: Arial, sans-serif;
	font-size: 11px;
         color:#404040;
	text-decoration: none;
	margin-right:0px;
         margin-left: 0px;
	background-color:#eceae4;
}

.topmenul1 a:hover {
	background-color:#808080;		/* On hover for a alements, */
	color:#FFFFFF;
}


/* Start second level and lower menu's */
.topmenul1 .topmenul2 {
	

	display:none;				
	position:absolute;			/* We position absolute (relative to l1) */
	width:120px;				/* Default width for sub-menu's */
	/*border:1px solid black;	*/	/* Border around the sub-menu's */
	z-index:10;				/* We set a z-index these menu's will show up above other menu items, works in non IE */
	left:0px;				/* Left to 0 and for IE we move one extra pixel down */	
	top:20px !important;
	top:20px;
	/*border-bottom: 1px solid #eceae4;*/

}

.topmenul1 .topmenul2 .topmenul2, .topmenul1 .topmenul2 .topmenul2 .topmenul2 {
	left:100px;				/* Move away from second level menu for second level and lower */
	top:-1px !important; 			/* Border = 1px so we need to move one up aswell !important to overrule the !important above*/
}

.topmenul1 li {
	padding:1px 0px;  			/* Controls the height per menu item on second level and lower */
	background-color: #eceae4;
	border-bottom: 1px solid #eceae4;

	/* ICON LINKS VOR LINK */
	/*
	background-image:url(../images/arrow-b1.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	*/	
}
 .topmenul2 li {
	padding:1px 0px;  			/* Controls the height per menu item on second level and lower */
	background-color: #efefef;
	border-bottom: 1px solid  #eceae4;
	/* ICON LINKS VOR LINK */
	/*
	background-image:url(../images/arrow-b1.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	*/	
} 




.topmenul1 a {
	/*padding: 1px;*/
	display:block;				/* Display block, so teh whole menu will lite up (if bg used)*/
	background-color:#eceae4;
	border-bottom: 1px #eceae4;
}
.topmenul2 a {
	display: block;
	vertical-align: top;
	width: 120px;
	font-size: 10px;
	background-color: #efefef;
}

.topmenul1 .topmenul2 a:hover {			/* Needed for IE aswell */
	color:white;
	background-color:#808080;
	/*border-bottom: 1px solid #eceae4;*/	/* no border, remove the style from level1 a tags */
}

/* Little arrows for the menus */
.topmenul1-ifsub,.topmenul2-ifsub {
/*	background-image:url(../images/arrow-b1.jpg);
	background-position:top left;
	background-repeat:no-repeat;*/
}
.topmenul2-ifsub {
	*/background-image:url(../images/arrow-b1.jpg);*/
}


.topmenul1 .hoveratag {
	background-color:#808080;		/* Hack in javascript, this will highlite teh a tag of the menu above */
	border:0px solid black;			/* We could do this with CSS (.topmenul1 li:hover > a) But IE doesn't support that */
}
