

/* CSS needed for the script */

#ajax_tooltipObj{
	z-index:1000002;
	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:18px;	/* Same as border thickness */
	top:0px;
	position:absolute;
	width:313px;	/* Width of tooltip content */
	height:377px;	/* Height of tooltip content */
	background-image:url('../images/bubblemain.png');
	background-repeat:no-repeat;
	background-position:left;
	padding:25px;	/* Space between border and content */
	font-family: Arial, Helvetica, sans-serif;
color: #000066;
font-size: 1.3;
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
}
