/* Photo-Caption Zoom - CSS */
.thumbnail{
/*position: relative;
z-index: 0;*/
}

.thumbnail:hover{
background-color: transparent;
z-index: 10;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #CCCCCC;
/*padding: 5px;*/
left: -1000px;
/*border: 1px thin #666666;*/
border:1px solid #CCCCCC;
visibility: hidden;
color: #666666;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
/*padding: 2px;*/
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -1px; /* added on 13-06-08 */
left: 128px; /*position where enlarged image should offset horizontally adde on 13-06-08 */
z-index: 5000;
}








