/*

	GalleryView Stylesheet
	
	Use the CSS rules below to modify the look of your gallery.
	
	To create additional rules, use the markup below as a guide to GalleryView's architecture.
	
	<div class="gallery">
		<div class="panel">
			<img src="path/to/image.jpg" />
			<div class="panel-overlay">
				...overlay content...
			</div>
			<div class="overlay-background"></div>
		</div>
		<ul class="filmstrip">
			<li class="frame current">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
			<li class="frame">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
		</ul>
	</div>
		

*/

/* required for the wordpres default theme */
.galleryview ul li:before {	content: '' !important; }

/* IMPORTANT - Change '#photos' to the ID of your gallery list to prevent a flash of unstyled content */
.galleryview { visibility: visible; position: relative; width: 590px; height: 443px; margin-bottom: 2px}

/* GALLERY CONTAINER */
.gallery { background: #ddd; border: 1px solid #aaa; padding: 5px;}

/* GALLERY PANELS */
.panel {position: absolute;}
.panel img{}

.filmstrip


.slideshow-wrapper{
	position: relative;
	width: 590px; height: 443px;
}
.cycle-slideshow{
	position: relative;
}
.slideshow-panel{
	position: absolute;
	width: 590px;
	height: 443px;
	overflow: hidden;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: white;
}

#slideshowh-dock{
	height: 20px;
	width: 100%;
	background-color: white;
}
#slideshow-pager,
#slideshow-prev,
#slideshow-next{display: inline;}
.slideshow_nav{
	height: 20px;
	background: white;
	width: 20px;
	text-align: center;
	background-color: #B3B3B3;
	line-height: 18px;
	color: white;
	margin-top: -1px;
	cursor: pointer;
}
#slideshow-prev{margin-right: 3px}
#slideshow-next{margin-left: 3px}
#slideshow-pager{}
#slideshow-pager img{width: 50px;height: 50px;}
#slideshow-pager{list-style-type: none!important}
#slideshow-pager li{float: left; margin-right: 2px; margin-bottom: 0!important; opacity: 0.8; background-color: transparent;list-style: none;}
#slideshow-pager li.aciveSlide{opacity: 1;}

#slideshow-prev,
#slideshow-nex{cursor: pointer}

.panel-overlay{
	opacity: 0;
	bottom: -100%;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	color: white;
	padding: 10px;
	width: 100%;
}
.panel-overlay p{
	line-height: 12px;
	margin-bottom: 5px;
	color: white;
}
.panel-overlay h2{color: white;}
.slideshow-panel:hover .panel-overlay{
	opacity: 1;
	bottom:0px;
}



#slideshow-pager{margin: auto; position: relative;}
#slideshow-pager a{
	text-decoration: none;
	display: block;
	width: 20px;
	height: 20px;
	float: left;
	font-size: 11px;
	line-height: 20px;
	vertical-align: middle;
	text-align: center;
	margin: 0 1px;
	color: #FFF;
	background-color: #B3B3B3;
}
#slideshow-pager a:hover,
#slideshow-pager a.activeSlide{
	text-decoration: none;
	color: #FFF;
	background-color: #000;
}


#slideshow-pager-wrapper{
	width: 544px;
	overflow: auto;
	display: inline-block;
}
#slideshow-pager-wrapper ul{
	white-space: nowrap;
}
