/* ####################################################### */
/*                    hover-effect link-overzicht          */
/* ####################################################### */
#links h2
	{
	margin: 15px 0 0 90px;
	}
	
ul.linklijst
	{
	list-style-type: none;
	margin: 0 0 0 90px;
	}
	
ul.linklijst li a
	{
	color: #6C5D54;
	}
	
ul.linklijst li a strong
	{
	color: #EE402F;
	}	
	
/* pseudo-tooltip in header [ gebaseerd op http://meyerweb.com/eric/css/edge/popups/demo.html ] */
ul.linklijst li
	{
	position: relative;
	}
	
ul.linklijst a span
	{
	display: none;
	}

ul.linklijst a:hover span
	{
	display: block;
	position: absolute;
	top: -2px;
	left: 100px;
	width: 250px;
	margin: 0;
	padding: 5px;
	z-index: 100;
	background: #F7B1A8;
	font-size: 11px;
	text-align: left;
	line-height: 130%;
	color: #6C5D54;
	}	