/* Gallery */
/*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*/
width: 550px; 
float:right;
height: 105px;
}

.thumbnail img{
border: none;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: none;
}

/* TOP RIGHT BOTTOM LEFT */

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: transparent;
padding: 45px 0 0 12px;
left: -200px;
top: -150px;
border: none;
visibility: hidden;
color: white;
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: -357px;
left: -235px; /*position where enlarged image should offset horizontally */
z-index: 2;
}
/* Gallery End */