#ajax_tooltipObj{
	z-index:1000000;
	text-align:left;
}
#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_top{
	background-image:url('../images/bubble.png');
	background-color:transparent;
	width:300px;
	left:-40px;
	top:-43px;
	position:absolute;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000001;
	height:200px;
}


#ajax_tooltipObj .ajax_tooltip_content{
	border:0px solid #000000;	/* Border width */
	left:25px;	/* Same as border thickness */
	top:2px;
	width:250px;	/* Width of tooltip content */
	position:absolute;
	padding:0px;	/* Space between border and content */
	font-size:0.8em;	/* Font size of content */
	overflow:auto;	/* Hide overflow content */
	z-index:1000003;
}

