/* CSS needed for the script */

#tooltipObj{
	z-index:1000000;
	text-align:left;
}
#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 */

#tooltipObj .tooltip_arrow{	/* Left div for the small arrow */
	background: transparent;
	background-image:url('../Icons/tooltip_arrow.gif');
	width:20px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
	height:25px;
}
/* korrektur ie */
* html #tooltipObj .tooltip_content {
	width: 230px;
	height: 30px;
}
#tooltipObj .tooltip_content{
	border:1px solid #999;	/* Border width */
	left:18px;	/* Same as border thickness */
	top:0px;
	position:absolute;
	min-width:230px;	/* Width of tooltip content */
	min-height:30px;	/* Height of tooltip content */
	background-color:#eee;	/* Background color */
	padding:5px;	/* Space between border and content */
	font-size:12px;	/* Font size of content */
	overflow:visible;	/* Hide overflow content */
	z-index:1000001;
}

