#slideshow {
	position: relative;
	width: 100%;
	overflow-x: hidden;
}

	#slideshow .slide {
		position: absolute;
		left: 100%;
		top: 0px;
		z-index: 10;
		background-position: center center;
		background-size: contain;
		background-repeat: no-repeat;
		cursor: pointer;
		visibility: hidden;
		transition-property: opacity, left;
		transition-duration: 1s;
	}
	
	#slideshow .slideTitle {
		position: absolute;
		padding: 5px;
		left: 0px;
		right: 0px;
		bottom: 10px;
		z-index: 15;
		background-color: rgba(0, 0, 0, 0.75);
		font-family: Garamond, Georgia, Palatino, Palatino Linotype, Times New Roman;
		font-weight: bold;
		color: #ffa000;
		opacity: 0;
		visibility: hidden;
		transition-property: opacity;
		transition-duration: 1s;
	}

		#slideshow .slideTitle big {
			font-size: 50px;
		}
	
		#slideshow .slideTitle small {
			font-size: 14px;
		}

		#slideshow .slideTitle a {
			color: #ffa000;
		}

#slideGalleryScroller {
	position: relative;
	width: 100%;
	overflow-x: auto;
}

		#slideGallery .slideshowThumbnail {
			margin-right: 5px;
			float: left;
			width: 160px;
			height: 91px;
			border-style: solid;
			border-color: rgba(0, 0, 0, 0);
			border-width: 5px 0px 5px 0px;
			background-position: center center;
			background-size: contain;
			background-repeat: no-repeat;
			cursor: pointer;
		}
	
