/*

	Supersized - Fullscreen Slideshow jQuery Plugin
	Version : 3.2.6
	Site	: www.buildinternet.com/project/supersized

	Theme 	: Shutter 1.1
	Author	: Sam Dunn
	Company : One Mighty Roar (www.onemightyroar.com)
	License : MIT License / GPL License

*/

/* Controls Bar
----------------------------*/
#controls-wrapper {
	margin: 0 auto;
	height: 84px;
	width: 100%;
	position: relative;
}

#slidecaption {
	overflow: hidden;
	float: left;
	color: #666;
	font: 500 12px museo-sans, sans-serif;
	margin: 0 10px 0 0;
	line-height: 18px;
}

@media only screen and (min-width : 992px) {
	#slidecaption {
		float: right;
		line-height: 42px;
	}
}

#slidecounter {
	float: left;
	color: #ccc;
	font: 500 12px museo-sans, sans-serif;
	margin: 0px 10px 0 0;
	line-height: 18px;
}

@media only screen and (min-width : 992px) {
	#slidecounter {
		float: right;
		line-height: 42px;
	}
}

#play-button {
	float: right;
	margin: 0;
}

#play-button:hover {
	cursor: pointer;
}

#prevslide, #nextslide {
	position: absolute;
	height: 43px;
	width: 43px;
	top: 50%;
	margin-top: -21px;
	opacity: 0.25;
}

#prevslide {
	left: 10px;
	background: url('../img/back.png');
}

#nextslide {
	right: 10px;
	background: url('../img/forward.png');
}

#prevslide:active, #nextslide:active {
	margin-top: -19px;
}

#prevslide:hover, #nextslide:hover {
	cursor: pointer;
}

/* Thumbnail Tray
----------------------------*/

#thumb-tray {
	z-index: 3;
	height: 84px;
	width: 100%;
	overflow: hidden;
	text-align: left;
}

#thumb-back, #thumb-forward {
	position: absolute;
	z-index: 5;
	bottom: 2px;
	height: 80px;
	width: 40px;
}

#thumb-back {
	left: 0;
	background: url('../img/thumb-back.png') no-repeat center center;
}

#thumb-forward {
	right: 0;
	background: url('../img/thumb-forward.png') no-repeat center center;
}

#thumb-back:hover, #thumb-forward:hover {
	cursor: pointer;
}

#thumb-back:hover {
	border-right: 1px solid rgba(255,255,255, 0.2);
}

#thumb-forward:hover {
	border-left: 1px solid rgba(255,255,255, 0.2);
}

ul#thumb-list {
	display: inline-block;
	list-style: none;
	position: relative;
	left: 2px;
	margin: 0;
	padding: 0;
}

ul#thumb-list li {
	list-style: none;
	display: inline;
	overflow: hidden;
	float: left;
	margin: 2px;
}

ul#thumb-list li img {
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

ul#thumb-list li.current-thumb img, ul#thumb-list li:hover img {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
}

ul#thumb-list li:hover {
	cursor: pointer;
}
