/* Products Availibility - Ampel */

/* style class for tooltip definition (doesn't have to be assigned anywhere - is used by jquery) */
.tooltip {
}

/* styles for tooltip layout (inner divs - one in function call, one in content texts) */
.tooltip_arrow_right {
	float:left;
	position: relative;
	margin-top:5px;
	z-index:1001;
	padding:13px 10px 13px 10px; /* to span the div for background arrow image */
	margin-right:-2px;
	background: url(../../img/arrow_tooltip_right.gif) no-repeat;
}
.tooltip_arrow_left {
	float:right;
	position: relative;
	margin-top:5px;
	z-index:1001;
	padding:13px 10px 13px 10px; /* to span the div for background arrow image */
	margin-left: -2px;
	background: url(../../img/arrow_tooltip_left.gif) no-repeat;
}
.tooltip_content {
	float:left;
	color:#006666;
	font-size: 1.0em;
	font-weight:normal;
	border:2px solid #317082;
	padding:7px;
	background-color:#F8F8F9;
	z-index:1000; /* for the arrow */
}