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

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

.thumbnail:hover{
background-color: transparent;
border-width: 0px solid #ddd;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
background-color: #fff;
padding: 0px;
left: -1000px;
border: 1px solid #ddd;
color: #fff;
text-decoration: none;
position: absolute;
visibility: hidden;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0px solid #ddd;
background-color: transparent;
padding: 0px;
margin: 0;
text-decoration: none;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -50px;
left: 130px; /*position where enlarged image should offset horizontally */

}
