/* CSS Document */
a span {display: none;}
.style1 {font-size: 10px}
.red {color: #FF0000}
.ora {color: #CC6600}
/* The above hover change defeats the
  IE/Win display changing bug */
a { position:relative; }
a:hover span.info {
  position: absolute;
  padding:4px;
  top: 5px;
  left: 30px;
  width: 170px;
  color: #000000;
  display: block;
  background: #FEFF99;
  border: 1px solid #000000;
  font-size: 10px;
  }

