/*
	Creating a tooltip:
	<a href=# class="tt">
		De zichtbare tekst
		<span class="tooltip">
			<span class="top"></span>
			<span class="middle">Here comes the actual tooltip</span>
			<span class="bottom"></span>
		</span>
	</a>
*/
a.tt{
    position:relative;
    z-index:24;
 	font-weight:bold;
    text-decoration:none;
}
a.tt span{ display:none }

/*background:; ie hack, something must be changed in a for ie to execute it*/
a.tt:hover{ z-index:25; color: #aaaaff; background:;}
a.tt:hover span.tooltip{
    display:block;
	font-weight:normal;
    position:absolute;
    top:0px; left:0;
	padding: 15px 0 0 0;
	width: 200px;
	max-width: 200px;
	color: #000000;
	text-decoration:none;
    text-align: left;
	filter: alpha(opacity:95);
	KHTMLOpacity: 0.95;
	MozOpacity: 0.95;
	opacity: 0.95;
}
a.tt:hover span.tt_top{
	display: block;
	padding: 30px 8px 0;
    background: url(images/tooltip.gif) no-repeat top;
}
/* different middle bg for stretch */
a.tt:hover span.tt_middle{ 
	display: block;
	padding: 0 8px; 
	background: url(images/tooltip_filler.gif) repeat bottom; 
}
a.tt:hover span.tt_bottom{
	display: block;
	padding:3px 8px 10px;
	color: #548912;
    background: url(images/tooltip.gif) no-repeat bottom;
}