/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail1{
position: relative;
z-index: 0;
}

.thumbnail1:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail1 span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
/*border: 1px dashed gray;*/
border-top:1px solid #99cc00;
border-right:1px solid #99cc00;
border-bottom:1px solid #99cc00;
border-left:1px solid #99cc00;
visibility: hidden;
color: black;
text-decoration: none;

}

.thumbnail1 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail1:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: /*0*/-1;
left: /*60*/155px; /*position where enlarged image should offset horizontally */
width:160px;
}