a.info {
    position: relative; /*this is the key*/
    z-index: 0;
	width: 170px;
    display: block;
    float: left;
}
.spanny {
    margin: 0 3px;
    float: left;
}
a.info .ttip {
    display:  none;
    float: left;
	text-decoration: none;
}
a.info:hover{
    z-index: 1;
    background-color: #fff;
	text-decoration: none;
	cursor: crosshair;
}
a.info:hover .ttip {  
    display: block;
	text-decoration: none;
    position: absolute;
    top: -130px;
    left: -365px;
    width: 360px;
    border: 1px solid  rgb(220,208,135);	
    background-color: #fff;
    color: #333;
    font-size: 11px;
    font-style: normal;
    padding: 5px;
}