a.tooltip{
position: relative;
z-index: 20;
color: #000;
text-decoration: none;
}

a.tooltip:hover {
z-index: 25;
}

a.tooltip span{ /* Span Element nicht anzeigen */
display: none;
}

a.tooltip:hover span { /* Span Element nur angezeigt beim Ueberfahren mit der Maus */

	background-image: url(../gfx/tooltip_background.png); 

	display: block; 
	position: absolute;
	top: 1.8em;
	left: 1.8em;
	width: 15em;
	padding: 3px 7px;
	border: 1px solid #ccc;
	color: #fff; 
	text-align: left;
	text-decoration: none;
}

a.tooltip:hover span strong{
color: #AC93C8;
}

