/*---------- bubble tooltip -----------*/
a.tt{
    position:relative;
    z-index:24;

}
a.tt span{ display: none; }


a.tt:hover{
	z-index:25;
background:;/*background:; ie hack, something must be changed in a for ie to execute it*/
}
a.tt:hover span.tooltip{
    display:block;
    position:absolute;
    top:-25px; left:-270px;
	padding: 0px 0 0 0;
	width:250px;
	font-weight:bold;
    text-align: left;
	filter: alpha(opacity:90);
	KHTMLOpacity: 0.90;
	MozOpacity: 0.90;
	opacity: 0.90;
}
a.tt:hover span.top{
	display: block;
	padding: 10px 8px 0;
    background: url(bubble_top.gif) no-repeat top;
}
a.tt:hover span.middle{ /* different middle bg for stretch */
	display: block;
	padding: 5px 10px 0 10px; background-color:#669900; 
	background: url(bubble_filler.gif) repeat bottom;
	color: #FFFFFF;
	font-family: Verdana, Arial ,Helvetica, sans-serif; font-size:10px; font-weight:bold;
}
a.tt:hover span.bottom{
	display: block;
	padding:3px 8px 10px 10PX;
	color: #548912;
    background: url(bubble.gif) no-repeat bottom;
}


a.tt:hover span.tooltip:hover{
    display:none;
}
/*---------- alt bubble tooltip -----------*/
a.tt_alt{
    position:relative;
    z-index:24;

}
a.tt_alt span{ display: none; }


a.tt_alt:hover{
	z-index:25;
background:;/*background:; ie hack, something must be changed in a for ie to execute it*/
}
a.tt_alt:hover span.tooltip_alt{
    display:block;
    position:absolute;
    top:25px; left:-130px;
	padding: 0px 0 0 0;
	width:300px;
	font-weight:bold;
    text-align: left;
	filter: alpha(opacity:90);
	KHTMLOpacity: 0.90;
	MozOpacity: 0.90;
	opacity: 0.90;
}
a.tt_alt:hover span.top{
	display: block;
	padding: 10px 8px 0;
    background: url(bubble_top_alt.gif) no-repeat top;
}
a.tt_alt:hover span.middle{ /* different middle bg for stretch */
	display: block;
	padding: 5px 10px 0 10px; background-color:#669900; 
	background: url(bubble_filler_alt.gif) repeat bottom;
	color: #FFFFFF;
	font-family: Verdana, Arial ,Helvetica, sans-serif; font-size:10px; font-weight:bold;
}
a.tt_alt:hover span.bottom{
	display: block;
	padding:3px 8px 10px 10PX;
	color: #548912;
    background: url(bubble_alt.gif) no-repeat bottom;
}


a.tt_alt:hover span.tooltip_alt:hover{
    display:none;
}


.tooltip_alt img {padding-right:10px; float:left; border: none;}

