.thumbnail{
position: relative;
z-index: 0;
outline:none;
}
.thumbnail:hover{
background-color: transparent;
z-index: 50;
outline:none;
}
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: white;
left: -1000px;
visibility: hidden;
color: black;
text-decoration: none;
outline:none;
}
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
outline:none;
}
.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -85px;
left: 100px;
outline:none; /*position where enlarged image should offset horizontally */
}



.thumbnailnew{
position: relative;
z-index: 0;
outline:none;
}
.thumbnailnew:hover{
background-color: transparent;
z-index: 50;
outline:none;
}
.thumbnailnew span{ /*CSS for enlarged image*/
position: absolute;
background-color: white;
left: -1000px;
visibility: hidden;
color: black;
text-decoration: none;
outline:none;
}
.thumbnailnew span img{ /*CSS for enlarged image*/
border-width: 0;
outline:none;
border: 2px solid #a71318;
}
.thumbnailnew:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -130px;
left: 50px;
z-index: 1000;
outline:none; /*position where enlarged image should offset horizontally */
}

