@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: #FFFFCC;
}

.tooltip {
      position: absolute;
      width: 150px;
      height: 20px;
      line-height: 20px;
      padding: 10px;
      font-size: 18px;
      text-align: center;
      color: rgb(0, 0, 0);
      background: rgb(255, 255, 255);
      border-top: 2px solid rgb(0, 0, 0);
      border-radius: 5px;
      text-shadow: rgba(0, 0, 0, 0.0980392) 1px 1px 1px;
}

.tooltip:after {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      border-width: 10px;
      border-style: solid;
      border-color: transparent transparent #000000 transparent;
      top: -22px;
      left: 75px;
}