.topmenul1, .topmenul2 {
	list-style:none;			/* Default styles for all menu's */
	margin:0;
	padding:0;
	height: 25px;
	font-family: Arial;
	font-size: 13px;
	font-weight: bold;	
}

.topmenul1 li {
	padding:0;
	float:left;				/* First level menu's needs to float left */
	position:relative;			/* Relative positiong because lower level menu's needs to be absolute */
	height: auto;	
}

/* First level colors for link tags */
.topmenul1 a {
	color: #fff;
	padding:0px 23px 0px 22px;		/* Seperate menu's a bit aswell, some extra space for the arrow on the right */
	border:0px solid #fff; 		/* Same as BG color so total width is always the same */
	line-height: 32px;
	text-decoration: none;
	border-left: 1px #fff solid;
}

.topmenul1 a:hover {
	border-left: 1px #fff solid;
}


/* Start second level and lower menu's */
.topmenul1 .topmenul2 {
	background-color: #5688c3;
	font-weight: normal;
	font-size: 12px;
	display:none;				
	position:absolute;			/* We position absolute (relative to l1) */
	width:170px;				/* Default width for sub-menu's */
	border:0px;			/* 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:31px !important;
	top:18px;
	border: 1px #fff solid;
	height: auto;
	padding: 8px 10px 8px 10px;
}

.topmenul1 .topmenul2 .topmenul2, .topmenul1 .topmenul2 .topmenul2 .topmenul2 {
	left:200px;				/* 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 0 0 0;  			/* Controls the height per menu item on second level and lower */
	background: url('../images/css-dotted.gif') repeat-x top;	
	border-bottom: 1px solid #5688c3;
	background-color: #5688c3;
	width:100%;		
}



.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:1px 3px;
	line-height: 20px;
}

.topmenul1 .topmenul2 a:hover {			/* Needed for IE aswell */
	color:#fff;
	border:none;				/* no border, remove the style from level1 a tags */
	background-color: #fb9a46;
}

/* Little arrows for the menus 
.topmenul1-ifsub,.topmenul2-ifsub {
	background-image:url(../images/arrow-b-d.gif);
	background-position:top right;
	background-repeat:no-repeat;
}
.topmenul2-ifsub {
	background-image:url(../images/arrow-b-r.gif);
}
*/

.topmenul1 .hoveratag {		/* Hack in javascript, this will highlite teh a tag of the menu above */
/*	border-left:1px solid #fff;			 We could do this with CSS (.topmenul1 li:hover > a) But IE doesn't support that */
}

li.lastitem {
background: url('../images/header_bg.gif') repeat-x bottom;	
}