@charset "utf-8";
/* CSS Document */

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

.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
min-height: 700px;
margin-top: 14px;
}

.thumbnail img{
border: 2px solid #ffffff;
margin: 0 2px -1px 0;
}

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

.thumbnail:hover img{
border: 2px solid #8cb75c;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 0 4px 4px 4px;
left: -1000px;
border: 0px solid gray;
visibility: hidden;
color: black;
font-size: .8em;
text-decoration: none;
}

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

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -3px;
left: 220px; /*position where enlarged image should offset horizontally */
z-index: 50;
border: 0px;
line-height: normal;
}

