<style type="text/css">

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: relative;
float: left;
background-color: #FFF;
padding: 5px;
left: 50px;
border: 1px solid gray;
display: none;
color: black;
text-decoration: none;
z-index: 100;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
position: relative;
display: block;
z-index:10;
top: 0;
left: 50px; /*position where enlarged image should offset horizontally */
top: -200px;
}

</style>
