@charset "utf-8";
/* CSS Document */

.topmenul1, .topmenul2 {
	list-style:none;			/* Default styles for all menu's */
	margin:0px;
	padding:0px 0px;
	text-align:left;
}

.topmenul1 a {
	border:none;
}

.topmenul1 li {
	padding:0px;
	float:left;							/* First level menu's needs to float left */
	position:relative;			/* Relative positiong because lower level menu's needs to be absolute */
}

/* 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 */
}

.topmenul1 a:hover {

}

/* Start second level and lower menu's */
.topmenul1 .topmenul2 {
	display:none;				
	position:absolute;						/* We position absolute (relative to l1) */
	width:180px;									/* Default width for sub-menu's */
	border:#a2a298 1px solid;
	z-index:100;									/* 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:43px;
}

.topmenul1 .topmenul2 .topmenul2, .topmenul1 .topmenul2 .topmenul2 .topmenul2 {
	left:180px;								/* 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 0px 0px;  				/* Controls the height per menu item on second level and lower */
	border-top:#c5c4bf 1px solid;			/* little color seperator */
	background-color:#f3f6e5;
	width:180px;
}

.topmenul1 .topmenul2 a {
	border:none;							/* no border, remove the style from level1 a tags */
	display:block;						/* Display block, so the whole menu will lite up (if bg used)*/
	padding:5px 0px 5px 5px;
	color: #676661;
	text-decoration:none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	width:175px;
}

.topmenul2act > a {
	color:#FFFFFF !important;
	background-color:#abb965;
	border:none;
}

.topmenul2act > a.topmenul2-ifsub {
	color:#FFFFFF;
	background-color:#abb965;
	background:url(/fileadmin/templates/img/tmenu_arrow.gif) no-repeat right;
	border:none;
}

.topmenul1 .topmenul2 a:hover {			/* Needed for IE aswell */
	color:#FFFFFF;
	background-color:#abb965;
	border:none;											/* no border, remove the style from level1 a tags */
}


/* Little arrows for the menus */
.topmenul2-ifsub {
	background:url(/fileadmin/templates/img/tmenu_arrow.gif) no-repeat right;
}

.firstlevellink img {
	border:0px;
}

.tmenuSep {
	margin:1px 0px 0px 0px;
	vertical-align:top;
}

