<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS only needed for the demo */
#mainContainer{
	margin:-10px 0 0 -10px;	/* Center align content, equivalent to margin-left:auto;margin-right:auto; */
	text-align:left;	/* Override inherited text-align:center from the body tag */
	height:auto;
}



/* End css for the demo */

/* CSS needed for the script */

#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_content{
	left:-5px;	/* Same as border thickness */
	top:-25px;
	position:absolute;
	height:auto;	/* Height of tooltip content */
	padding:0px;	/* Space between border and content */
	font-size:12px;	/* Font size of content */
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
}</pre></body></html>