/*********************************
* Slideshow Styling
*********************************/
#slideshow {
	width: 100%;
	height: 385px;
	position:relative;
    border: 1px solid #ccc;
    overflow: hidden;
}

.slideCarousel{
	margin-bottom: 55px;
}
	#slideshow.fullscreen {
		position: fixed;
		top: 0;
		left: 0;

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

		overflow: hidden;
	}
	.img-wrapper {
		width: 340px;
		height: 310px;
		text-align: center;
		white-space: nowrap;
		margin: 1em 0;
		
		
		position: absolute;
		
	    overflow: hidden;
	    
	    z-index:8;

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

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

	/*********************************
	* Thumbnail Styling
	*********************************/
	.thumbs-container {
		width: 100%;
		position: absolute;
		left: 0;
		z-index: 11;
		background: #f2f2f2;
		opacity: .9;
		height: 55px;
	}
		.thumbs-container.top {
			top: 0;
		}
		.thumbs-container.bottom {
			bottom: 0;
		}
		.prev, .next {
			width: 0%;
			min-width: 30px;
			height: 30px;
			padding: 28px 0%;
			color: #999999;
			cursor: pointer;
		}
		.prev { float: left; margin-top: -10px;}
		.next { float: right; margin-top: -10px;}
			.prev:hover, .next:hover {
				color: #555555;
			}
		ul.thumbs {
			position: absolute;
			
			left: 3%;
			right: 5%;
			padding: 0px;
			margin: 0 3%;
			overflow: hidden;
			white-space: nowrap;
			text-align: center;
		}
			.thumb {
				display: inline-block;
				width: 50px;
				height: 50px;
				margin:3px;

				overflow: hidden;
				background-size: cover;
	    		background-position: center center;

	    		cursor: pointer;
			}
				.thumb:first-of-type {
					margin-left: 0px;
				}
			.thumb.active {
				width: 50px;
				height: 50px;
				border: 2px solid #FFF;
			}
			
.img-wrapper a img{
	display:none;
}
 
.active a img{
	display:inherit ;
}			