/**
* styles for jQuery Tooltip plugin
* used on the product details page
* to tell the customer that they need to
* select a color and a size
*/
#tooltip {
	position: absolute;
	z-index: 10000;
	height: 16px;
	padding-bottom: 8px;
}
#tooltip.viewport-right {
	background-image: none;
}
#tooltip h3, #tooltip div { margin: 0; }
#tooltip h3 {
	font-size: 11px;
	line-height: normal;
	font-weight: normal;
	color: #000000;
	background-color: #FCD309;
	padding: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	white-space: nowrap;
	background-position: 50% 100%;
	height: auto;
	padding-bottom: 5px;
}

#tooltip div.body {
	font-size: 11px;
	line-height: normal;
	font-weight: bold;
	color: #000000;
	background-color: #FCD309;
	padding: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	width: auto;
}
#tooltip.img {
	background-image: url(../images/backgrounds/tooltipBg_norpt.png);
	background-repeat: no-repeat;
	background-position: 5px 100%;
	height: 64px;
	padding-bottom: 5px;
}
#tooltip.img div.body {
	padding: 2px;
	height: 60px;
	width: 90px;
	background-color: #FCD309;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
}

