@charset "utf-8";
/* ToolTipp */
/* HTML Einbindung: <a class="tooltip" href="#">Hier mit der Maus rauf<span><b>Hilfe</b><br />HTML-Tags sind moeglich</span></a> */
a.tooltip,
a.tooltip:link,
a.tooltip:visited,
a.tooltip:active {
position: relative;
text-decoration: none;
font-weight: bold;
border-bottom:0px dotted #4dbcf3;
color: #A306C4;
}

a.tooltip:hover {
background: transparent;
z-index: 100;
cursor:help;
}

a.tooltip span {
display: none;
text-decoration: none;
}

a.tooltip:hover span {
display: block;
position: absolute;
top: 30px;
left: 0;
width: 300px;
z-index: 100;
color: #000000;
border: 2px solid #090;
border-left: 6px solid #090;
padding: 3px 10px 3px 10px;
background-color:#ff9;
font-family: verdana;
text-align: left;
font-weight:normal;
}

