/* CSS Document */
 a.info{
        position:relative;           /*this is the key*/
        z-index:24;
        /*background-color:#e0e0e0;     background colour of display text */
        color: #313131;               /* colour of display text */
        /*border:0px dotted #999;     border colour */
        text-decoration:none;
         }

        a.info:hover {
        z-index:25;
        /* background-color:#ffff66;*/

        }

        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;
        top: -1.2em;
        left: 3em;
        width:55em;
		height:35px;
		border:1px solid #FF9900; /* border colour */
        background-color:#000000; /* background colour here */
        color:#ffffff;         /* text colour */
        text-align: center;
		font-family:Tahoma;
        font-size:12px;
        z-index:30;
        }

        .images {
        vertical-align:bottom;
        }



