/* CSS only needed for the demo */
/* 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_a_datos {	/* Left div for the small arrow */
	background-image:url('../images/arrow.gif');
	width:10px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
	height:50px;
}
#ajax_tooltipObj .ajax_tooltip_a_ayuda {	/* Left div for the small arrow */
	background-image:url('../images/arrow2.gif');
	width:10px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
	height:50px;
}

#ajax_tooltipObj .ajax_tooltip_c_datos {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;	/* Font size of content */
	line-height: 16px;
	color: #775100;
	border: 1px solid #D5C71E;	/* Border width */
	left: 9px;	/* Same as border thickness */
	top: 0px;
	position: absolute;
	width: 350px;	/* Width of tooltip content */
	background-color: #EBE170;	/* Background color */
	padding: 4px;	/* Space between border and content */
	overflow: hidden;	/* Hide overflow content */
	z-index: 1000001;
}

#ajax_tooltipObj .ajax_tooltip_c_ayuda {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;	/* Font size of content */
	line-height: 16px;
	color: #A46F00;
	border: 1px solid #EBE169;	/* Border width */
	left: 9px;	/* Same as border thickness */
	top: 0px;
	position: absolute;
	width: 350px;	/* Width of tooltip content */
	background-color: #FAF8D8;	/* Background color */
	padding: 4px;	/* Space between border and content */
	overflow: hidden;	/* Hide overflow content */
	z-index: 1000001;
}