#nav {
   position: relative;
   top: 0;
   left: 0;
   z-index: 1000;
}
.topmenul1, .topmenul2, .topmenul3 {
	list-style:none;			/* Default styles for all menu's */
	margin:0px;
	padding:0px 0px;
}

.topmenul1 li {
	background-color: #fff;
	padding:8px 0 0 0;
	float:left;				/* First level menu's needs to float left */
	position:relative;			/* Relative positiong because lower level menu's needs to be absolute */
	z-index: 90;
}


/* special css for contact and career menuitems */
.topmenul1 li#contact, .topmenul1 li#career {
	background-color: #E6E6E6;
	float:right;				/* contact and career menu's needs to float right */
	padding:6px 8px 6px 8px;		/* Seperate menu's a bit aswell, some extra space for the arrow on the right */
	margin: 0;
}
.topmenul1 li.current, .topmenul1 li#contact .current, .topmenul1 li#career .current, .topmenul2 li.current a {
	font-weight: bold;
}

/* First level colors for link tags */
.topmenul1 a {
	color: #265184;
	padding:0 15px 4px 5px;		/* Seperate menu's a bit aswell, some extra space for the arrow on the right */
	border:1px solid #fff; 		        /* Same as BG color so total width is always the same */
	text-decoration: none;
	display: block;	
}

/* contact en career border for link tags */
.topmenul1 li#contact a, .topmenul1 li#career a, .topmenul1 li#contact a:hover, .topmenul1 li#career a:hover {
	border:1px solid #E6E6E6; 		        /* Same as BG color so total width is always the same */
	background-color: #E6E6E6;
    padding:0px 15px 0px 5px;	
}

.topmenul1 a:hover {
	color: #e4761f;
	background-color:#fff;		/* On hover for a alements, */
	border:1px solid #fff;
	display: block;		
}


/* Start second level and lower menu's */
.topmenul1 .topmenul2 {
	display:none;				
	position:absolute;			/* We position absolute (relative to l1) */
	left:3px;				/* Left to 0 and for IE we move one extra pixel down */	
	top:31px !important;
	top:32px;
	z-index:100;				/* We set a z-index these menu's will show up above other menu items, works in non IE */	
	width:160px;				/* Default width for sub-menu's */
	border-top:1px solid #D57F28;			/* Border around the sub-menu's */
	border-right:1px solid #D57F28;			/* Border around the sub-menu's */
	border-bottom:1px solid #D57F28;			/* Border around the sub-menu's */
}

.topmenul1 .topmenul2 .topmenul2, .topmenul1 .topmenul2 .topmenul2 .topmenul2 {
	left:160px;				/* 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 {
	padding:2px 0px;  			/* Controls the height per menu item on second level and lower */
	border:none;	/* little color seperator */
	/* background:transparent url(/fileadmin/img/trans8.gif) repeat top left; */
	background-color: #fff;
	width:100%;
	/* BENDOO-fix */
	margin: 0;
}

.topmenul1 .topmenul2 a {
	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:0px 4px;
    font-weight: normal;	
    background: #fff;
}

.topmenul1 .topmenul2 a:hover {			/* Needed for IE aswell */
	color:#e4761f;
	border:none;				/* no border, remove the style from level1 a tags */
    background: #fff;	
}

/* Start third level */
.topmenul1 .topmenul2 .topmenul3 {
	display:none;				
	position:absolute;			/* We position absolute (relative to l1) */
	width:160px;				/* Default width for sub-menu's */
	border-top:1px solid #D57F28;			/* Border around the sub-menu's */		
	border-right:1px solid #D57F28;			/* Border around the sub-menu's */
	border-bottom:1px solid #D57F28;			/* Border around the sub-menu's */
	z-index:150;				/* We set a z-index these menu's will show up above other menu items, works in non IE */
	left:160px;				/* Left to 0 and for IE we move one extra pixel down */	
	top:0px !important;
	top:1px;
}

.topmenul1 .topmenul2 .topmenul3 a {
    font-weight: normal;
    font-size: 90%;	
}
.topmenul1 .topmenul2 .topmenul3 li.current a {
	font-weight: bold;
}

/* Little arrows for the menus */
/*.topmenul1-ifsub,*/
.topmenul2-ifsub, a:hover.topmenul2-ifsub {
	background-image:url(/fileadmin/img/arrow-b-d.gif);
	background-position:top right;
	background-repeat:no-repeat;
}
.topmenul2-ifsub {
	background-image:url(/fileadmin/img/arrow-b-r.gif);
}


.topmenul1 .hoveratag {
	color: #666;
	background-color:#fff;		/* Hack in javascript, this will highlite teh a tag of the menu above */
	border:1px solid #fff;		/* We could do this with CSS (.topmenul1 li:hover > a) But IE doesn't support that */
}

