@charset "utf-8";
/* CSS Document */

a.info{
    position:relative; /*this is the key*/
    z-index:24; background-color: white;
    color: black;
    text-decoration:none }

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

a.info span{display: none}

a.info:hover span{ /*the span will display just on :hover state*/
	background-image: url(images/content-images/speech-bubble.png);
	width: 100px;
	height: 60px; 
    font-size: 13px;
	background-repeat: no-repeat;
	display:block;
    position:absolute;
    left: -1em; 
    color: black;
    text-align: center}
