@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
{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #000;
	/*background-image: url(../img/tooltip.png);
	background-repeat: no-repeat;
	background-position: left top;*/
	height: 266px;
	width: 355px;
	text-align: center;
	vertical-align: middle;
	cursor: help;
	padding-top: 20px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	-moz-box-shadow: inset 0 0 5px #888;
	-webkit-box-shadow: inset 0 0 5px #888;
	box-shadow: inner 0 0 5px #888;
	-moz-border-radius: 10px / 10px;
	border-radius: 10px / 10px;
	background-color: #FA6301;
	font-weight: bold;
}