a.tooltip
{
 color: #666666;
 text-decoration:none;
}
a.tooltip:hover
{
 text-decoration:underline;
 position:relative;
 text-decoration:none;
}

a.tooltip span
{
 display:none;
}

a.tooltip:hover span
{
 position:absolute;
 z-index:1;
 top:35px;
 left:0px;
 width:200px;
 display:block;
 padding:4px;
 background-color:#FFFFCC;
 border:2px solid #C0C097;
}

a.tooltipRight:hover span 
{
 left:-200px;
}

a.tooltipRightWide:hover span 
{
 left:-300px;
}

a.tooltipWide:hover span 
{
width:300px;
}


.tooltip .arrow /* arrow must be used in bold tag */
{
 position:absolute;
 width:26px;
 height:15px;
 top:-15px;
 left:5px;
 background-image:url(../images/tooltiparrow.gif);
}

.tooltipRight .arrow /* arrow must be used in bold tag */
{
 left:140px;
}

.tooltipRightWide .arrow /* arrow must be used in bold tag */
{
 left:290px;
}


.tooltip strong
{
 color:#333333;
 text-align:center;
 font:0.75em arial,helvetica,clean,sans-serif;
}

.tooltip p
{
 margin:0px;
 color:#FF8C00;
 text-align:center;
 font:0.75em arial,helvetica,clean,sans-serif;
}

