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: #505050; /* Hintergrundbild */
	display: block; /* macht aus dem Inlineelement ein Blockelement */
	position: absolute;
	top: 20px; /* abstand von oben */
	left: 0px; /* abstand von links */
	width: 300px; /* breite */
	padding: 3px 7px; /* Innenabstand */
	border: 1px solid #ccc; /* Rahmenfarbe */
	color: #fff; /* Textfarbe */
	text-align: left; /* Textausrichtung */
	font-weight: normal;
}

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

a.tooltip span ul{
	list-style-type: disc;
	padding: 4px 0 4px 12px;
}

.tooltip .alert{
	color: #fff !important; 
	margin: 0;
	padding:0;
}


