/* galerievtextu */

	.gallerycontainer{
		position: relative;
		margin-left: 6px;
	/*Add a height attribute and set to largest image's height to prevent overlaying*/
	}
	.gallerycontainer A {
		text-decoration: none;
	}

	.thumbnail img{
		border: 0px solid white;
		margin: 0 5px 5px 0;
		z-index: -150;
	}

	.thumbnail:hover{
		background-color: transparent;
		text-decoration: none;
		cursor: crosshair;
	}

	.thumbnail:hover img{
		border: 0px solid #FF8000;
		z-index: -150;
	}

	.thumbnail span{
	/*CSS for enlarged image*/
		position: absolute;
		background-color: #FFFAF4;
		padding: 2px 2px 10px 2px;
		left: -1000px;
		border: 2px solid #FF6600;
		visibility: hidden;
		color: #4B2F08;
		text-decoration: none;
		margin: 4px 4px 10px 4px;
		text-align: center;
		z-index: +250;
	}

	.thumbnail span img{
	/*CSS for enlarged image*/
		margin: 10px 10px 10px 10px;
		border: thick dotted Black;


	}

	.thumbnail:hover span{ /*CSS for enlarged image*/
		visibility: visible;
		top: 110px;
		left: 16px; /*position where enlarged image should offset horizontally */

	}

