@charset "utf-8";
/* CSS Document */

.thumbnail{
position: absolute;
z-index: 0;
text-decoration:none !important;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
background-color: #fff;
padding: 0px;
right: -1000px;
visibility: hidden;
color: black;
text-decoration: none !important;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;
border: 1px dashed gray;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
position:absolute
top: 0px;
right: 0px; /*position where enlarged image should offset horizontally */
/*	text-decoration:none !important;*/
left:10px;
}
