/*********************************
* Slideshow Styling
*********************************/
#slideshow {
	width: 100%;
	height: 714px;
	margin: 100px auto;

    position:relative;

    overflow: hidden;
}
#slideshow.fullscreen {
/*		position: fixed;
		top: 0;
		left: 0;*/

	width: 100%;
	height: 714px;
		margin: 0;
		padding: 0;

		overflow: hidden;
}
	.img-wrapper {
	    min-width: 100%;
	    min-height: 100%;

		position: absolute;
		top: 0;
	    bottom: 0;
	    left: 0;
	    right: 0;

	    margin: auto;
	    overflow: hidden;

	    z-index:8;

	    background-size: cover;
	    background-position: center center;
	}
		#slideshow .img-wrapper.active {
		    z-index:10;
		}

		#slideshow .img-wrapper.last-active {
		    z-index:9;
		}

	/*********************************
	* Thumbnail Styling
	*********************************/
	.thumbs-container {
		width: 100%;
		height: 140px;
		position: absolute;
		left: 0;

		z-index: 11;

	/*	background: #222222;*/
		/*opacity: .9;*/
	}
		.thumbs-container.top {
			top: 0;
		}
		.thumbs-container.bottom {
			bottom: 0;
		}
		.prev, .next {
			width: 9%;
			margin-top:-10px;
			min-width: 40px;
			height: 48px;
			padding: 46px 1%;
			position:relative;
			z-index:9999;
			color: #999999;
			cursor: pointer;
		}
		.prev { float: left; text-align:right; }
		.next { float: right; text-align:left; }
			.prev:hover, .next:hover {
				color: #555555;
			}
		ul.thumbs {
			position: absolute;
			top: 0;
			left: 7%;
			right: 7%;
			height: 140px;
			padding: 0;
			margin: 0;
			overflow: hidden;
			text-align: center;
		}
			.thumb {
				display: inline-block;
				width: 31%;
				height: 106px;
				margin: 10px 3px;
				padding:4px;
				background-color:#ffffff;
				overflow: hidden;
				background-size: cover;
	    		background-position: center center;
	    		cursor: pointer;
			}
				.thumb:first-of-type {
					margin-left: 0px;
				}
			.thumb.active {
				width: 31%;
				height: 106px;
				background-color:#f9c623;
			}
