<!--
/* Tooltip */
a.tooltip,
a.tooltip:link,
a.tooltip:visited,
a.tooltip:active {
position: relative;
text-decoration: none;
font-style: bold;
border-bottom:0px dotted #4dbcf3;
}

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

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

a.tooltip:hover span {
display: block;
position: absolute;
bottom: 15px;
right: 0px;
width: 164px;
z-index: 100;
color: #DEDAB7;
border: 2px solid;
border-color: #151515 #151515 #151515 #151515;
padding: 3px 4px 3px 4px;
background: #000000;
font-family: Verdana, Arial, Helvetica, Sans-serif;
font-style: normal;
text-align: center;
}
-->