/* 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('/img/nav/arrow.gif');
	width:20px;
	position:absolute;
	left:-30px;
	top:-6px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000010;
	height:60px;
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:2px solid #317082;	/* Border width */
	left:-242px;	/* Same as border thickness */
	top:15px;
	position:absolute;
	width:200px;	/* Width of tooltip content */
	height:auto;	/* Height of tooltip content */
	background-color:#fff0d7;	/* Background color */
	padding:5px;	/* Space between border and content */
	font-size:1em;	/* Font size of content */
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
	vertical-align:middle;
}

#ajax_tooltipObj .ajax_tooltip_content h1
{
	font-size: 12px;
	color: #7597a5;
	padding-top:0px;
	padding-bottom:2px;
	margin-top:0px;
	margin-bottom : 2px;
	vertical-align:middle;
}