/* Tool Tip Style */

/* This is where you can customize the appearance of the tooltip rollover*/
a.info{
    position:relative; /*this is the key*/
  /*  z-index:24; enable to float link on top layer */
    color:#000;
    text-decoration:none;
	 cursor: help;
}


a.info:hover{z-index:25; background-color: #58595b;}

a.info span{display: none}

a.info:hover span{ /*the span will display just on :hover state*/
    display:block;
	 font-family: Verdana, Tahoma, sans-serif;
	 color:#FFF;
	 font-size: 9px;
    position:absolute;
    top:18px;
	 left:0px; 
	 width:250px;
    border:1px solid #0cf;
    background-color:#5caed7; 
}

