/* CSS Document */

<style type="text/css">

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

#container1 {
position: relative;
width: 800px;
margin: auto;
top:100px;
left:175px;
}

.galleryweb{
position:relative;
left:370px;
top:120px;
width: 500px;
}


.gallerycontainer{
position:relative;
left:640px;
top:390px;
width:1000px;
z-index:7;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px transparent;
margin: 0 5px 5px 0;

}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 0px solid blue;
text-align:center;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: white;
padding: 2px;
left: 50px;
top: 50px;
border: 1px dashed 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*/
visibility: visible;
top: -350px;
left: -300px; /*position where enlarged image should offset horizontally */
z-index: 50;
}



</style>

