@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;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	width: 12em;
}

.tooltipContent
{
	background-color: #FFFFFF;
	color: rgb(0,102,51);
	border: 1px solid rgb(153,153,153);
	display: block;
	width: 350px;
	padding: 5px;
	text-align: justify;
}

.iframeTooltip:hover {
	color: rgb(255,185,15);
}

.tooltipImage
{
	background-color: #FFFF99;
	color: #000;
	border: 1px solid rgb(0,0,0);
	display: block;
	padding: 5px;
	text-align: left;
	font: 0.7em INFFIN;
	width: 15em;
	box-shadow: 2px 2px 2px #300;
}
