﻿
.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFFFCC;
border: 1px solid black;
visibility: hidden;
color: black;
text-decoration: none;
width: auto;
}

.thumbnail span img{ /*CSS for enlarged image*/
width:auto;
border-width: 0;
padding: 2px;
}


.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: -10px; /*position where enlarged image should offset horizontally */

}


.women{
position: relative;
z-index: 0;
}

.women:hover{
background-color: transparent;
z-index: 50;
}

.women span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
border: 1px solid black;
visibility: hidden;
color: black;
text-decoration: none;
}

.women span img{ /*CSS for enlarged image*/
width:712px;
border-width: 0;
padding: 2px;
}

.women:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: -190px; /*position where enlarged image should offset horizontally */

}
