/* 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_arrow{	/* Left div for the small arrow */
	background-image:url('../images/arrow.gif');
	width:20px;
	position:absolute;
	left:-8px;
	top:-20px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
	height:60px;
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:1px solid #A2A2A2;
	left:10px;
	top:-250px;
	position:absolute;
	width:170px;
	height:275px;
	padding:10px 10px 10px 15px;
	font-size:.90em;
	line-height: 1.25em;
	overflow:auto;
	z-index:1000001;
	background-color: #edf5fb;
}

#ajax_tooltipObj .ajax_tooltip_content a{
	font-size:1.0em;
	color:#CC0000;
	text-decoration:none;
}
#ajax_tooltipObj .ajax_tooltip_content a:hover{
	color:#CC0000;
	text-decoration:underline;
}
