﻿.gallerycontainer{
	margin: 10px 5px 10px 5px;
	position: relative;
	height: 500px;
	width: 880px;
	text-align: left;
}

.thumbnail img{
border: 1px solid #13482A;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid #13482A;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
visibility: hidden;
color: #13482A;
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: 0;
	left: 10px; /*position where enlarged image should offset horizontally */
	z-index: 50;
}
