.thumbnail{
position: absolute;
z-index: 0;
}

.thumbnail_lnk:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail_lnk span{ /*CSS for enlarged image*/
position: absolute;
background-color: #4d4a44;
text-align:center;
top:-50px;
left: -100px;
visibility: hidden;
color: #FFFF00;
text-decoration: none;
width:0px;/* para que el texto bajo la imagen que estan en el span sepa el ancho*/
height:0px;
}

.thumbnail_lnk span img{ /*CSS for enlarged image*/
border-width: 0;
padding-top: 2px;
max-width:0px;
max-height:0px;
}

.thumbnail_lnk:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
left:50%;
margin-left:-465px;
top: 203px;
z-index:50;
width:472px;/* para que el texto bajo la imagen que estan en el span sepa el ancho*/
height:342px;
}

.thumbnail_lnk:hover span img{ /*CSS for enlarged image on hover*/
width:422px;
height:318px;
max-width:422px;
max-height:318px;
}