@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;
	
}

.tooltipContent
{   
	border: solid 1px grey;
	background-color:#CCC;
	width: 350px;
	height: 95px;
	font-family:Verdana, Geneva, sans-serif;
	font-size:10px;
	filter:alpha(opacity=90); /* IE */
    -moz-opacity: 0.90; /* Mozilla */
    opacity: 0.90; /* Opera */
	left: 100px;
	top: 200px;
	padding: 5px;
	
}
 
