/* Code for Product Listing Popup images */
.thumbnail2{
position: relative;
z-index: 0;
}

.thumbnail2:hover{
background-color: transparent;
z-index: 0;
}

.thumbnail2 span{ /*CSS for enlarged image*/
position: absolute;
background-color: #ffeeaa;
padding: 0px;
border: 1px dashed red;
visibility: hidden;
color: #034B82;
font-size: 12px;
font-style: oblique;
font-weight: bold;
text-decoration: none;
margin-top: -50px;
margin-left: 0px;;
margin-right: 10px;
margin-bottom: 10px;
width: 400px;
text-align: center;
}

.thumbnail2 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;
width: 400px;
height: auto;
}

.thumbnail2:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
margin-right: 10px;
margin-bottom: 10px;
 /*position where enlarged image should offset horizontally */

}

