/* Tool Tip 2 CSS */

a.info{
    position:relative; /*this is the key*/
    z-index:24; 
    color:#0000ff;
    text-decoration:none}

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

a.info span{display: none}

a.info:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top:15px; left:15px; width:250px;
    border:2px solid #000033;
    background-color:#ff0; color:#000;
	font-size:small;
	padding:3px;
    text-align: left}
