
/* =popup images
-----------------------------------------------------------------------------*/
.thumbnail, .thumbnailProd { position: relative; z-index: 0; padding:0px; }

.thumbnail:hover, .thumbnailProd:hover { background-color: transparent; z-index: 50; }

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFF;
padding: 5px;
left: -1000px;
border: 2px solid #6AAE17;
visibility: hidden;
color: black;
text-decoration: none;
z-index: 99;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
z-index: 99;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -80px;
left: -200px;
z-index: 99;/*position where enlarged image should offset horizontally */
}

.thumbnailProd span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFF;
padding: 5px;
left: -1000px;
border: 2px solid #6AAE17;
visibility: hidden;
color: black;
text-decoration: none;
z-index: 99
}

.thumbnailProd span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnailProd:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -80px;
left: -200px; /*position where enlarged image should offset horizontally */
}
