/* VERTICAL MENU */
.vertmenul1, .vertmenul2 {
	list-style:none;					/* Default styles for all menu's */
	margin:0px 0px 0px 20px;
	padding:0px 0px;
	width: 215px;
}

.vertmenul1 li {
	font-size: 16px;
	line-height: 36px;
	color: #2e7aff;
	padding:0px 0px;
/* 	float:left; */							/* First level menu's needs to float left */
	position:relative;					/* Relative positiong because lower level menu's needs to be absolute */
	border-top: 1px solid #00aee1;
}

/* First level colors for link tags */
.vertmenul1 a {
	display:block;				
	width:195px !important;
	width/**/:205px;
	color:#00aee1;
	padding:0px 0px 0px 20px;			/* Seperate menu's a bit aswell, some extra space for the arrow on the right */
	text-decoration: none;
}

.vertmenul1 a:hover {			/* On hover for a alements, */
	background-color: #00aee1;
	color: white;
	}
/*
.rrrrrvertmenul1 a:hover {
	display:block;				
	width:195px !important;
	width/**:215px;
	background-color: #00aee1!important;
	background-color/**: green;
	color: white;
	padding:0px 0px 0px 20px;
}
*/


/* Start second level and lower menu's */
.vertmenul1 .vertmenul2 {
	display:none;				
	position:absolute;					/* We position absolute (relative to l1) */
	width:215px;						/* Default width for sub-menu's */
	border:0px solid #00aee1;			/* Border around the sub-menu's */
	z-index:600;							/* We set a z-index these menu's will show up above other menu items, works in non IE */
	left:195px!important;							/* Left to 0 and for IE we move one extra pixel down */	
	top:-1px !important;
	top:-1px;
	text-decoration: none;
}

.vertmenul1 .vertmenul2 .vertmenul2, .vertmenul1 .vertmenul2 .vertmenul2 .vertmenul2 {
	left:100px;							/* 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*/
}

.vertmenul1 .vertmenul2 li {
	width:100%;
	margin-left: 0px!important;
	margin-left/**/: 0px;
}

.vertmenul1 .vertmenul2 a {
	font-size: 14px;
	color:#80E1FD;
	text-decoration: none;
	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 0px 0px 20px;  					/* Controls the height per menu item on second level and lower */
/* 	background-color: #00aee1; */
	background-image:url(../_img/bg_menu_l2.gif);
	background-position:top left;
	background-repeat:no-repeat;
}

.vertmenul1 .vertmenul2 a:hover {			/* Needed for IE aswell */
	color: white;
	border:none;						/* no border, remove the style from level1 a tags */
	background-color: #178ACE;
}

/* Little arrows for the menus 178ACE
.vertmenul1-ifsub,.vertmenul2-ifsub {
	background-image:url(../_img_lw/arrow-up.gif);
	background-position:top right;
	background-repeat:no-repeat;
}
.vertmenul2-ifsub {
	background-image:url(../_img_lw/arrow-up.gif);
}*/



.vertmenul1 .hoveratag {			/* Hack in javascript, this will highlite teh a tag of the menu above */
	background-color: #00aee1;
	color: white;
}


}
.firstlevellink {
	text-decoration: none;
}

