BODY, P, TABLE, TR, TD, TH, TBODY, DIV, BR, INPUT, SELECT { font-family: Verdana, Arial, sans-serif; font-size: 11px; }
TH, B { font-size: 11px; font-weight: bold; text-align: left; }


/* CSS for tooltips                             */
/* http://jlhaslip.trap17.com/samples/tooltips/ */
a.info
	{
  position:relative;           /*this is the key*/
  z-index:24;
  background-color:rgb(225,248,255); /* background colour of display text */
  color:#000000;             /* colour of display text */
  border-bottom:1px dotted rgb(1,137,180);    /* border colour */
  text-decoration:none;
  font-style:italic;
  }

a.info:hover 
	 {
	 z-index:25;
	 background-color:rgb(176,236,255);
	 }
	
a.info span
	 {
	 display: none;  /* hide the span text using this css */
	 }
	
a.info:hover span
	 { /*the span will display just on :hover state*/
	 display:block;
	 position:absolute;
	 padding: 10px;
	 top: 2.5em;
	 left: -8em;
	 width:35em;
	 border:1px solid rgb(1,137,180); /* border colour */
	 background-color:rgb(225,248,255); /* background colour here */
	 color:#000000;         /* text colour */
	 text-align: left;
	 font-size: 1em;
	 font-style:normal;
	 z-index:30;
	 }
	
.images 
	 {
	 vertical-align:bottom;
	 }

