<style type="text/css">

.thumbnail1{
position: relative;
z-index: 0;
}

.thumbnail1:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail1 span{ /*CSS for enlarged image*/


position: absolute;
background-color: #FFFFFF;
padding: 5px;
left: -1000px;
border:1px solid #ceebfa;
/* border: 1px dashed gray; */
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail1 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail1:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 550px;
left: 29px; /*position where enlarged image should offset horizontally */

}

</style>



