.topmenul1, .topmenul2 {
	list-style:none;			/* Default styles for all menu's */
	margin:0px;
	padding:0px;
	position:relative;
	z-index: 100;
}

.topmenul1 a {
	border:none;
}

.topmenul1 li {
	/*background-color: black;*/
	padding:0px;
	margin:0px;
	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: 100;
}

/* First level colors for link tags */
.topmenul1 a {
	padding:0px; 		/* Seperate menu's a bit aswell, some extra space for the arrow on the right */
	 
	/*border:1px solid #E79518; 		/* Same as BG color so total width is always the same */
}

.topmenul1 a:hover {
	/*background-color:black;		/* On hover for a alements, */
/*	border:1px solid black;*/
}


/* Start second level and lower menu's */
.topmenul1 .topmenul2 {
	display:none;				
	position:absolute;			/* We position absolute (relative to l1) */
	z-index:100;				/* We set a z-index these menu's will show up above other menu items, works in non IE */
	left:-1px;				/* Left to 0 and for IE we move one extra pixel down */	
/*	top:15px !important; */
	top:31px;
	border-top: 1px solid #4686a7;
}

.topmenul1 .topmenul2 .topmenul2, .topmenul1 .topmenul2 .topmenul2 .topmenul2 {
	left:123px;				/* 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:0px 0px;  			/* Controls the height per menu item on second level and lower */
	border-left: 1px solid #4686a7;
	border-bottom: 1px solid #4686a7;
	border-right: 1px solid #4686a7;
	padding:0px 0px 0px 0px;
}

.topmenul1 .topmenul2 a {
	display: block;
	color: #096d9f;
	text-decoration: none;
	background-image: url(../images/nav/top/subnav.gif);
	width: 101px;
	height: 16px;
	padding: 3px 14px 0px 8px;
}

.topmenul1 .topmenul2 a:hover {			/* Needed for IE aswell */
	display: block;
	color: #096d9f;
	text-decoration: none;
	background-image: url(../images/nav/top/subnav-mo.gif);
	width: 101px;
	height: 16px;
	padding: 3px 14px 0px 8px;				/* no border, remove the style from level1 a tags */
}

/* Little arrows for the menus */
.topmenul2-ifsub {
	background-image:url(JAP/img/arrow-b-r.gif);
	background-position:right;
	background-repeat:no-repeat;
}
