<style type="text/css">

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 50;
}
.thumbnail:a{
border: 1px solid #d24a18;
}
.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFCC00;
padding: 2px;
left: -1000px;
border: 2px solid #d24a18;
visibility: hidden;
color: white;
text-decoration: none;
}

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

.thumbnail:hover span{ /*CSS for enlarged image on hover*/

visibility: visible;
top: 450px;
left: 100px; /*position where enlarged image should offset horizontally */
padding-right:20px;
padding-top:25px;

}

</style>

