@charset "UTF-8";

/* SpryTooltip.css - version 0.2 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* HACK FOR IE: to make sure the tooltips show above form controls, we underlay each tooltip with an iframe */
.iframeTooltip
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}

.tooltipContent
{
	background-color: rgba(255,204,204,0.9);
	width:auto;
	height:auto;
	font-family:Verdana;
	font-size:12px;
	padding:4px;
	border-radius:8px;
	border-style: solid;
	border-color: rgba(239,117,117,0.4);
	border-width: 3px;
	-webkit-box-shadow:  2px 2px 3px 2px rgba(165, 164, 164, 0.8);
	box-shadow:  2px 2px 3px 2px rgba(165, 164, 164, 0.8);
	
}