.gallerycontainer{
	position: relative;
	height: 75px;
	width: 100px;

/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid brown;
margin: 0 0px 3px 0;
}

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

.thumbnail:hover img{
border: 1px solid orange;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: white;
	padding: 5px;
	left: -295px;
	visibility: hidden;
	color: #493E27;
	height: 260px;
	width: 280; /*- ENSURE TABLE SIZE is set to max available pixels in HMTL file*/
	top: 0;
	text-decoration: none;
	text-align:center;
	font-weight: bold;
}

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

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







.rgallerycontainer{
	position: relative;
	height: 75px;
	width: 100px;

/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.rthumbnail img{
border: 1px solid brown;
margin: 0 0px 3px 0;
}

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

.rthumbnail:hover img{
border: 1px solid orange;
}

.rthumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: white; 
	padding: 5px;
	left: -426px;
	visibility: hidden;
	color: #493E27;
	height: 260px;
	width: 280; /*- ENSURE TABLE SIZE is set to max available pixels in HMTL file*/
	top: 0;
	text-decoration: none;
	text-align:center;
	font-weight: bold;
}


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

.rthumbnail:hover span{ /*CSS for enlarged image*/
position: absolute;
visibility: visible;
top: 0px;
/*left: 1; /*position where enlarged image should offset horizontally*/
z-index: 1000;

