/*
donker blauw: color="#15ade7"
licht blauw: color="#AADFEF"
*/
.topmenul1, .topmenul2 {
	font-size: 10px;
	list-style:none;					/* Default styles for all menu's */
	margin:0px;
	padding:0px 0px;
}

.topmenul1 li {
	padding-bottom:0px; 
	padding-top:0px; 
	padding-left:2px; 
	padding-right:2px;
	
	float:left;							/* First level menu's needs to float left */
	position:relative;
	/*border-right:1px solid #00aee1; 		/* Same as BG color so total width is always the same */
	line-height: 13px;
	height:36px;
	width:172px;
	background: url(../_images/tab_bg.gif) top center no-repeat;		/* Relative positiong because lower level menu's needs to be absolute */
	before:none;
}

/* First level colors for link tags */
.topmenul1 a {
	display:block;
	color:white;
	padding:8px 0px 0px 0px;			/* Seperate menu's a bit aswell, some extra space for the arrow on the right */
	/*border-top:6px solid #00aee1; 			/* Same as BG color so total width is always the same */
	margin:0px;							/*to centre in IE */
}

.topmenul1 a:hover {			/* On hover for a alements, */
	color: black;	
	/*border-top:6px solid #2ca946;*/
}


/* Start second level and lower menu's */
.topmenul1 .topmenul2 {
	display:none;				
	position:absolute;					/* We position absolute (relative to l1) */
	width:176px;						/* Default width for sub-menu's */
	border:0px solid black;				/* Border around the sub-menu's */
	z-index:500;							/* 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:36px !important;
	top:37px;
}

.topmenul1 .topmenul2 .topmenul2, .topmenul1 .topmenul2 .topmenul2 .topmenul2 {
	left:177px;							/* Move away from second level menu for second level and lower */
	top:0px !important; 				/* Border = 1px so we need to move one up aswell !important to overrule the !important above*/
	background-color: white;
}

.topmenul1 .topmenul2 li {
	padding:2px 0px;  					/* Controls the height per menu item on second level and lower */
	border-bottom:1px solid #15ade7;	/* little color seperator */ 
	border-right:1px solid white;
	width:100%;
	left:6px;
	height:24px;
	background-image: none;
	background-color: #AADFEF;
}

.topmenul1 .topmenul2 .topmenul2 li {
	left:0px;
}

.topmenul1 .topmenul2 a {
	color: #15ade7;
	font-size: 11px;
	position: relative;
	top:-2px;
	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:2px 4px 0px 14px;
	line-height:24px;
	height:24px;
	text-decoration: none;
}

.topmenul1 .topmenul2 a:hover {			/* Needed for IE aswell */
	color: white;
	background: #15ade7;
	height:26px;
	border:none;					/* no border, remove the style from level1 a tags */
}

/* 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-top:6px solid #2ca946;				/* We could do this with CSS (.topmenul1 li:hover > a) But IE doesn't support that */
	color: black;
}
.firstlevellink, #firstlevelactive {
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
}
#firstlevelactive {
	color:black;
}
li.active {
	background: url(../_images/tab_active_bg.gif) top center no-repeat;	
}