@charset "UTF-8";

/* 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_content{
	border:2px solid #317082;	/* Border width */
	left:18px;	/* Same as border thickness */
	top:0px;
	position:absolute;
	/*width:350px;	 Width of tooltip content */
	min-width:346px;max-width:346px;width:auto !important;width:360px;

	/*height:320px;	 Height of tooltip content */
	min-height:306px;max-height:306px;height:auto !important;height:330px;

	background-color:#FFF;	/* Background color */
	/* padding:5px;	Space between border and content */
	padding:10px 5px;

	/*font-size:0.8em;	 Font size of content */
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
}


#ajax_tooltipObj .ajax_tooltip_close{
	z-index:10000000;background-color:#fff;
	/*position:absolute;left:50%;bottom:20px;text-align:center;*/
	/*position:relative;top:-20px;left:315px;*/
	position:relative;top:3px;left:308px;
	padding:3px;
}

#ajax_tooltipObj .ajax_tooltip_close a{
	text-decoration:none;
	background:url(closebtn.gif) no-repeat 0 0 transparent;
	padding-left:18px;
}

