 /*
        =================================
        start of Tooltip css code here
        ================================= 
		  
		  
		  */

        a.info{
        position:relative;           /*this is the key*/
        z-index:24;
        }

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

        }

		  a.info {
		  text-decoration: none;
		  }

        a.info .info{
        display: none;  /* hide the span text using this css */
        }

        a.info:hover .info{ /*the span will display just on :hover state*/
        display:block;
        position:absolute;
        top: 2.5em;
        left: -2em;
        width:30em;
		  padding: .5em;
        border:1px solid gray; /* border colour */
        background-color:#fffddd; /* background colour here */
        color:#000000;         /* text colour */
        text-align: left;
		  font: normal 100% sans-serif;
        z-index:30;
        }

        .images {
        vertical-align:bottom;
        }

.info .bdcode {
		  font: bold 100% sans-serif;
}
.info .kc {
		  font: bold 100% sans-serif;
		  color: blue;
}
.info .euro {
		  font: bold 100% sans-serif;
		  color: red;
}

.bb {
	display: block;
	width: 90px;
}



