﻿/*---------- bubble tooltip -----------*/
a.tt
{
    font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, sans-serif;
    position:relative;
    z-index:24;
    text-decoration:none!important;
}

a.tt h3{font-size:15px; font-style:italic; margin:0 15px 10px 15px}
a.tt p{ padding:0 15px 0!important; margin:0px!important; font-size:11px; line-height:125%; font-weight:normal; text-decoration:none!important;}

a.tt span{ display: none; }

/*background:; ie hack, something must be changed in a for ie to execute it*/
a.tt:hover{ z-index:25; background:;}
a.tt:hover span.tooltip{
    display:block;
    position:absolute;
    top:0px; left:0;
	padding: 30px 0 0;
	width:334px;
	height:220px;
    text-align: left;
}
a.tt:hover span.top{
	display: block;
	padding: 20px 8px 0;
    background: url(../i/bubble.gif) no-repeat top;
}
a.tt:hover span.middle{ /* different middle bg for stretch */
	display: block;
	padding: 0 8px; 
	background: url(../i/bubble_filler.gif) repeat bottom; 
}
a.tt:hover span.bottom{
	display: block;
	padding:15px 8px 15px;
	color: #548912;
    background: url(../i/bubble.gif) no-repeat bottom;
}


span.tooltip iframe
		{
			display:none;/*sorry for IE5*/
			display/**/:block;/*sorry for IE5*/
			position:absolute;/*must have*/
			top:0;/*must have*/
			left:0;/*must have*/
			z-index:-1;/*must have*/
			filter:mask();/*must have*/
			width: 100%;/*must have for any big value*/
			height: 100%;/*must have for any big value*/
		}