/*
Kleuren Maltha:

blauw: 15ade7;
oranje: f39400;

steunkleuren
bruinrood: e55425 	(studenten)
paars: 663496		(bovenbouw)
roze: ff0c79		(onderbouw)
groen: 35a94c 		(basis)
*/


.menuhortopwrapper {
	padding:32px 0px 0px 0px;
	float: left;
	width:406px;
}

.logo_link {
	padding:32px 0px 0px 70px;
	float:left;
}


#hortopmenu {
	float:left;

}

.hortopmenul1, .hortopmenul2 {
	font-size: 9px;
	list-style:none;					/* Default styles for all menu's */
	margin:0px;
	padding:0px 0px;
}

.hortopmenul1 li {
	padding:0px 0px;
	margin:0px;
	margin-left:10px;
	float:left;							/* First level menu's needs to float left */
	position:relative;
	line-height: 25px;					/* Relative positiong because lower level menu's needs to be absolute */
	text-transform: uppercase;
}

/* First level colors for link tags */
.hortopmenul1 a {
	display:block;
	color:black;
	padding:0px;			/* Seperate menu's a bit aswell, some extra space for the arrow on the right */
}

.hortopmenul1 a:hover {					/* On hover for a alements, */
	color: white;
}


/* Start second level and lower menu's */
.hortopmenul1 .hortopmenul2 {
	display:none;				
	position:absolute;					/* We position absolute (relative to l1) */
	width:200px;						/* 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:30px !important;
	top:31px;
}

.hortopmenul1 .hortopmenul2 .hortopmenul2, .hortopmenul1 .hortopmenul2 .hortopmenul2 .hortopmenul2 {
	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*/
	background-color: green;
}

.hortopmenul1 .hortopmenul2 li {
	padding:0px 0px;  					/* Controls the height per menu item on second level and lower */
	border-bottom:1px solid #5ACDEE;	/* little color seperator */ 
	border-right:0px solid #AADFEF;
	width:100%;
	background-color: #AADFEF;
}

.hortopmenul1 .hortopmenul2 a {
	color: black;
	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 0px 14px;
	text-decoration: none;
}

.hortopmenul1 .hortopmenul2 a:hover {			/* Needed for IE aswell */
	color: black;
	border:none;						/* no border, remove the style from level1 a tags */
	background-color: #5ACDEE;
}

/* Little arrows for the menus */
.hortopmenul1-ifsub,.hortopmenul2-ifsub {
/* 	background-image:url(../_images/arrow_right.gif); */
	background-position:right 8px ;
	background-repeat:no-repeat;
}
.hortopmenul2-ifsub {
	background-image:url(../_images/arrow_right.gif);
}


.hortopmenul1 .hoveratag {			/* Hack in javascript, this will highlite teh a tag of the menu above */
	color: #2ca946;
}
.firstlevellink {
	text-decoration: none;
}

#yacbddm3 a.firstlevellink:before{
	content: url(../_images/arrow_right.gif);
	padding-right: 4px;
}
#yacbddm3 a:hover.firstlevellink:before{
	content: url(../_images/arrow_right_white.gif);
	padding-right: 4px;
}