/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.smlImg{
position: relative;
z-index: auto;
}

.smlImg:hover{
background-color: transparent;
z-index: 50;
}

.smlImg span{ /*CSS for enlarged image*/
position: absolute;
background-color:#fff;
padding: 0px;
left: -1000px;
border: 5px solid #666;
visibility: hidden;
color: black;
text-decoration: none;
}

.smlImg span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;
}

.smlImg:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 50px;
left: 20px; /*position where enlarged image should offset horizontally */
}


