/* ----- Balloon Tooltip ----- */

#ajax_tooltipObj{
	z-index:1000000;
	text-align:left;
	display: none;
}
#ajax_tooltipObj div{
	position:relative;
}

/* If you don't want the arrow - Just set the width of this div to 1 or something like that and drop the background selectors from the CSS below */
 
#ajax_tooltipObj .ajax_tooltip_arrow{	/* Left div for the small arrow */
	background-image:url('../images/balloon-arrow.gif');
	width:20px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
    height: 40px;
}

#ajax_tooltipObj .ajax_tooltip_arrow_left{	/* Left div for the small arrow */
	background-image:url('../images/balloon-arrow-left.gif');
	width:20px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
    height: 40px;
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:1px solid #c3c3c3;	/* Border width */
	left:19px;	/* Same as border thickness */
	top:0px;
	position:absolute;
    padding: 0px 0px 10px 0px;
	background-color:#FFF;	/* Background color */
	z-index:1000001;
	font: 9px Verdana, Helvetica, Arial, sans-serif;
}

#ajax_tooltipObj .ajax_tooltip_shadow{
    background-color:#000;
    z-index:1000000;
    left: 27px;
    top: 9px;
    position: absolute;
    opacity: .15;
    filter:alpha(opacity=15);
}

#ajax_tooltipObj .ajax_tooltip_shadow_left{
    background-color:#000;
    z-index:1000000;
    left: 12px;
    top: 9px;
    position: absolute;
    opacity: .15;
    filter:alpha(opacity=15);
}

/* ----- End Baloon Tooltip ----- */