*
 


/***** Menu Formatting *****/
#menu { 
	display: block;
    float:right;
    text-align: center;
    font-size: 50%;
    text-decoration: none;
    font-family: Verdana, Tahoma;
    
}

/*uitzicht menu*/
#menu ul { 
	width: 460px; /*If your links text is bigger you will have to adjust this value*/
    height: 23px;
	margin: 0 10;
	padding: 0;
	line-height: 25px; /*same as height. This will center your text verticaly*/
	text-decoration: bolder;
    border-right:1px solid #DFDFDF;
    border-left:1px solid #DFDFDF;
    border-bottom:1px solid #DFDFDF;
    border-top:1px solid #DFDFDF;
}

#menu ul li { 
	display: inline;
	float: right;
	list-style: none;
	text-align: center;
	text-decoration: none;
    border-right:1px solid #FFFFFF;
}
/*lettertype*/			
#menu ul li a { 
    font-family:verdana,tahoma,arial;
    font-size:8px;
    font-weight:bold;
	display: block;
	text-decoration: none;
	text-transform: inherit;
	padding: 0 10px;
	color: #FFFFFF;

}


		  
#menu ul li a:hover, #menu ul li a.active { 
    display:inline-block;
	text-decoration: bold;
	Color: #FF0000;
}

#menu ul li a.active {
	font-weight: bold;
	cursor: default;
}





