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

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

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

.thumbnail img{
	margin: 0 2px 2px 0;
}

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

.thumbnail:hover img{
border: 0px solid #ffffff;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
margin-left: -140px;
margin-top: 100px;
border: 0px solid gray;
visibility: hidden;
color: #000;
font-size: 1.2em;
text-decoration: none;
padding: 3px;
background: #eabe84;
border-radius: 5px;
-moz-border-radius: 5px;
}

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

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