#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_arrow{	/* Left div for the small arrow */
	background-image:url('/images/ajax_tooltip_arrow.gif');
	width:20px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
	height:60px;
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:2px solid #c0c0c0;	/* Border width */
	left:18px;	/* Same as border thickness */
	top:0px;
	position:absolute;
	width:250px;	/* Width of tooltip content */
	min-height:150px;
	height:auto !important;
	height:150px;
	background-color:#FFF;	/* Background color */
	font-size:0.9em;	/* Font size of content */
	overflow:none;	/* Hide overflow content */
	z-index:1000001;
}

#ajax_tooltipObj .ajax_tooltip_content h1 {
	font-size:10pt;
	margin:3px;
}

#ajax_tooltipObj .ajax_tooltip_content div.info {
	background-color:#eeeeee;
	width:244px;
	border-top:1px solid #c0c0c0;
	border-bottom:1px solid #c0c0c0;
	padding:3px;
	margin: 6px 0px;
}

#ajax_tooltipObj .ajax_tooltip_content div.content {
	background-color:#ffffff;
	width:244px;
	padding:3px;
}

#ajax_tooltipObj .ajax_tooltip_content div span {
	font-weight:bold;
	width:80px;
	display:block;
	float:left;
}