/*
Description: Styles for the Revel Outdoors website, floating tooltips
Version: 0.1
Author: Jamie Wightman
Copyright (c) 2007 Revel Outdoors Ltd.
Author URI: http://jamiewightman.com/
*/

a.tooltip {
  z-index: 24;
  position: relative;
  font-size: .8em;
}

a.tooltip: hover {
  z-index: 25;
}

a.tooltip span.revelratings {
  display: none;
  text-decoration: none;
}

a.tooltip:hover {
}

a.tooltip:hover span.revelratings {
  position: absolute;
  top: 1.5em;
  left: 1em;
  border: 1px solid #cccccc;
  padding: 5px 20px 5px 10px;
  display: block;
  color: #000000;
  background-color: #F6F3F3;
  font-size: 0.9em;
  width: 200px;
  text-decoration: none;
}

a.tooltip span.tooltipText {
  display: none;
  text-decoration: none;
}

a.tooltip:hover span.tooltipText {
  position: absolute;
  top: 1.5em;
  left: 1em;
  border: 1px solid #cccccc;
  padding: 5px 20px 5px 10px;
  display: block;
  color: #000000;
  background-color: #F6F3F3;
  font-size: 0.9em;
  width: 200px;
  text-decoration: none;
}

.FAQTooltips {
  position: absolute;
  left: 0;
  border: 1px solid #cccccc;
  padding: 5px 10px 5px 10px;
  display: none;
  color: #000000;
  background-color: #F6F3F3;
  font-size: 0.9em;
  width: 600px;
  text-decoration: none;
}


