/* CSS needed for the script */

#ajax_tooltipObj{
	z-index:1000000;
	text-align:left;
}
#ajax_tooltipObj div{
	position:fixed;
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:1px solid #777;	/* Border width */
	left:10px;	/* Same as border thickness */
	top:10px;
	width:200px;	/* Width of tooltip content */
	height:120px;	/* Height of tooltip content */
	background-color:#fff;	/* Background color */
	padding:5px;	/* Space between border and content */
	font-size:0.8em;	/* Font size of content */
	overflow:hidden;	/* Hide overflow content */
	z-index:1000001;
}
