
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 */
	font-family: Arial, Georgia, Serif;
	background: url(../img/back.png) top left; 	/* Hintergrundbild */
	display: block;					/* macht aus dem Inlineelement ein Blockelement */
	position: absolute;
	font-size: 12px;
	top: 25px;					/* abstand von oben */
	left: 25px; 					/* abstand von links */
	width: 20em;					/* breite */
	padding: 3px 7px;				/* Innenabstand */
	border: 1px solid #ccc;				/* Rahmenfarbe */
	color: #fff;					/* Textfarbe */
	text-align: left;				/* Textausrichtung */
	text-decoration: none;
	line-height: 1.50em;
	white-space: pre-wrap;
}


a.tooltip:hover span strong{
		color: #FF8040;						
		font-weight:bold;
		text-decoration:underline;
		font-size: 130%;
}