/*---------- bubble tooltip -----------*/

.tt_frame {
	position:absolute;
	width: 200px;
	height: 200px;
	filter:alpha(opacity=0);
	z-index: -1; /** необходим для работы ссылок в абсолютном диве **/	
}

span.tt{
    /*position:relative;*/
	/*display: none;*/
    z-index:200;
    color:#3CA3FF;
	font-weight:normal;
    text-decoration:none;
}
span.tt span{ display: none; }

/*background:; ie hack, something must be changed in a for ie to execute it*/
span.tt{ z-index:200; color: #aaaaff; background:;}
span.tt span.tooltip{
    display:block;
    /*position:absolute;
	filter: alpha(opacity:90);
	KHTMLOpacity: 0.90;
	MozOpacity: 0.90;
	opacity: 0.90;
    top:0px; left:0;*/
	padding: 0;
	width:200px;
	color: black;
    text-align: left;
}
span.tt span.top{
	display: block;
	padding: 30px 8px 0;
    background: url(bubble.gif) no-repeat top;
}
span.tt span.middle{ /* different middle bg for stretch */
	display: block;
	padding: 0 8px; 
	background: url(bubble_filler.gif) repeat bottom; 
}
span.tt span.bottom{
	display: block;
	padding:3px 8px 10px;
	color: #548912;
    background: url(bubble.gif) no-repeat bottom;
}

