/* CSS needed for the AJAX tooltips */

#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 */
	width:1px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:4px;
	color: white;
	left:18px;
	top:0px;
	position:absolute;
	width:150px;
	background-color:#0A3561;
	padding:5px;
	font-size:12px;
	overflow:auto;
	z-index:1000001;
	border-top-style: groove;
	border-bottom-style: groove;
	border-right-style: groove;
	border-left-style: groove;
	border-top-color: #FD9900;
	border-right-color: #FD9900;
	border-bottom-color: #FD9900;
	border-left-color: #FD9900;
}
