/**
 * Gallery To Slideshow CSS
 *
 * @package Gallery To Slideshow
 * @author Matt Varone
 */
/* =Wrapper
-------------------------------------------------------------- */
div.gallery-to-slideshow-wrapper {
	width: 228px;
	overflow: hidden;
	padding: 0 20px 0 0;
	
	position: relative;
	background: #fdfdfd;
	float:left;
	display: block;
}
/* =Header
-------------------------------------------------------------- */
.gallery-to-slideshow-header {
	overflow: hidden;
	padding: 1em;
	margin: 0 auto 1em;
	clear: both;
	display: block;
	font-weight: bold;
	font-size: 0.9em;
	text-transform: uppercase;
	font-family: georgia, verdana, arial;
	letter-spacing: 0.17em;
	text-indent: 0;
	text-shadow: #fff 0 1px;
}
.gallery-to-slideshow-title {
	width:40%;
	float: left;
	clear: none;
	text-align:left;
}
.gallery-to-slideshow-caption {
	width:60%;
	float: right;
	clear: none;
	text-align:right;
}
.gallery-to-slideshow-title, .gallery-to-slideshow-caption {
	margin-bottom: 0;
}
/* =Slides
-------------------------------------------------------------- */
.gallery-to-slideshow {
	margin: 0 auto;
	width: 100%;
}
.gallery-to-slideshow .slides {
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
}
.gallery-to-slideshow .slides li {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}
.gallery-to-slideshow .slides li.active {
	display: block;
	position: relative;
}
.gallery-to-slideshow .slides li img {
	display: block;
	width: 228px;
	height: 300px;
	max-width: none;
}
/* =Pager
-------------------------------------------------------------- */
.gallery-to-slideshow .pager {
	text-align: center;
	margin: 1em auto 0;
	width: 100%;
	list-style: none;
	overflow: hidden;
}
.gallery-to-slideshow .pager li {
	display: inline-block;
	margin-bottom:1em;
}
.gallery-to-slideshow .pager li a {
	background: white;
	border: 1px solid #c8cdd3;
	display: block;
	height: 90px;
	width:70px;
	margin-right:1px;
	opacity: 0.5;
	padding: 1px;
	overflow:hidden;
}
.gallery-to-slideshow .pager li a img {
	width: 70px;
	height: 90px;
}
.gallery-to-slideshow .pager li.active a {
	opacity: 1;
	border-color: lightgrey;
}
/* =Small
-------------------------------------------------------------- */
@media (max-width: 959px) {
	.gallery-to-slideshow-title {
		width: 100%;
		text-align: center;
		}
	.gallery-to-slideshow-caption {
		display: none;
		}
}