/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

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

.thumbnail:hover{
background-color: transparent;
z-index: 100;
border: 1px;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
background-image:url(photo/bg_mgt.jpg);
background-repeat:repeat-x;
border: 1px solid #CCCCCC;
visibility: hidden;
text-decoration: none;
width:160px;
}

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

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;

left: 110px; /*position where enlarged image should offset horizontally */

}