div#tooltip a span
 {
  display:none;
 }

 div#tooltip a:hover
 {
  background-color:rgb(126, 124, 129); 
 }

div#tooltip a:hover span
 {
  display:block;
  text-decoration :none;
  margin-top:0px; margin-left:10px;
  width:400px;
  padding:5px;
  margin:4px;
  z-index:100;
  color:black;
  background:lightyellow;
  border:1px solid black;
  font-size:14px;
 }


a:link { text-decoration:none; font-weight:bold; color:#cc9933; }
a:visited { text-decoration:none; font-weight:bold; color:#cc9933; }
a:hover { text-decoration:none; font-weight:bold; background:rgb(126, 124, 129); color:#e4e4e4;  }
a:active { text-decoration:none; font-weight:bold; background-color:rgb(245, 245, 245); }
a:focus { text-decoration:none; font-weight:bold; background-color:rgb(245, 245, 245); color:#cc9933; }


