/* CSS Document */


a.tooltip
{
  position: relative;
  text-decoration: none;
  color: black;
  
}


a.tooltip span
{
  display: none;
}

a.tooltip:hover span
{
  position: absolute;
  display: block;
  width:40em;
  top: 1.5em;
  left: 2em;
  font-size:80%;
  border: 1px solid black;
  background-color:white;
  padding: 2em;
  
}
