@charset "utf-8";
/* [CSS Document for upper images]*/

.thumbnail{
border:thin;
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 0px;
top: -350; /*to bring image upwords increase the no.*/
left: 100px;
border: 1px solid gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
/*top: 200px;
left: 25px;
z-index: 50;*/
top: -350; /*to bring image upwords increase the no.*/
left: -370px; /*position where enlarged image should offset horizontally */

}
