
.gallerycontainer{
position: relative;
height: 411px;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
margin:;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: 100px;
visibility: hidden;
color: black;
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: 22px;
left: 45px; /*position where enlarged image should offset horizontally */
z-index: 50;
}




body {
	background-color: #000000;
	scrollbar-base-color: #24013b;
 	scrollbar-arrow-color: #9B0079;
	scrollbar-3dlight-color: #4d4d4d;
	scrollbar-darkshadow-color: #4d4d4d;
	scrollbar-highlight-color: #4d4d4d;
}