.topmenul1, .topmenul2 {
	list-style:none;			/* Default styles for all menu's */
	margin:0px;
	padding:0px 0px;
}

.topmenul1 {
position:relative;
width:860px;
z-index:5;
}	

.topmenul1 li {
	background-color: #FFFFFF;
	padding:10px 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 {
	color:#bababa;
	font-family:arial, verdana, helvetica, sans serif;
	padding:0px 35px 0px 37px;		/* Seperate menu's a bit aswell, some extra space for the arrow on the right */
	border:0px solid #FFFFFF; 		/* Same as BG color so total width is always the same */
	text-decoration:none;
}

.topmenul1 a:hover {
	background-color:#FFFFFF;		/* On hover for a alements, */
	border:0px solid #FFFFFF;
	color:#000000;
}


/* Start second level and lower menu's */
.topmenul1 .topmenul2 {
	display:none;				
	position:absolute;			/* We position absolute (relative to l1) */
	width:140px;
	border:0px solid #FFFFFF;			/* 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:24px !important;
	top:24px;
}

.topmenul1 .topmenul2 .topmenul2, .topmenul1 .topmenul2 .topmenul2 .topmenul2 {
	
	left:140px;				/* 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 .topmenul2 li {
	position:relative;
	padding:2px 0px;  			/* Controls the height per menu item on second level and lower */
	border-bottom:0px solid #FFFFFF;	/* little color seperator */
	background-color:#ebebeb; 
	width:100%;
	background-image:url(../images/border_bottom.jpg);
	background-position:bottom left;
	background-repeat:no-repeat;
}

.topmenul1 .topmenul2 a {
	font-family:arial, verdana, helvetica, sans serif;
	font-size:11px;
	color:#000000;
	border:none;				/* no border, remove the style from level1 a tags */
	display:block;				/* Display block, so teh whole menu will lite up (if bg used)*/
	padding:5px 4px;
	text-decoration:none;
	background-position:center right;
	background-repeat:no-repeat;
}

.topmenul1 .topmenul2 a:hover {			/* Needed for IE aswell */

	background-color:#e2d7a6;
	color:#000000;
	border:none;				/* no border, remove the style from level1 a tags */
	opacity: 0.91;
	filter:alpha(opacity=91); !important
}

.topmenul1 .hoveratag {
	background-image:url(../images/arrow.gif);
	background-position:top left;
	background-repeat:no-repeat;
	background-color:#ffffff;		/* Hack in javascript, this will highlite teh a tag of the menu above */
	border:0px solid #FFFFFF;			/* We could do this with CSS (.topmenul1 li:hover > a) But IE doesn't support that */
}



.topmenul2-ifsub {
	background-image:url(../images/arrow_sub.jpg);
	background-repeat:no-repeat;
	color:#000000;
	
}	


.topmenul1-active {
	background-image:url(../images/arrow.gif);
	background-repeat:no-repeat;
	color:#000000 !important;
	
}
 	

