/* CSS-Grundgerüst für einen Tooltip */

a.tooltip:hover	{
	position: relative;               /* Bezug für div, IE: erst bei :hover setzen */
}  

a.tooltip span 	{
	position: absolute;               /* aus Textfluß herausnehmen */
	visibility: hidden;               /* normal: unsichtbar */
	background: #ffffff;

	top: 1.5em; left: 1em;              /* Tooltip-Position, sollte man festlegen */
}

a.tooltip:hover span	{
	visibility: visible;              /* hover: sichtbar */
	background: #ffffff;
}

a.tooltip 	{
  color: #000000;
	text-decoration: none;
}


