/*

	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: hidden;
	height: 720px !important;
}

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

/* GALLERY PANELS */
.panel { 
	height: 720px !important;
	background: #000 !important;
}

/* DEFINE HEIGHT OF PANEL OVERLAY */
/* NOTE - It is best to define padding here as well so overlay and background retain identical dimensions */
.panel .panel-overlay,
.panel .overlay-background { height: 60px; padding: 0 1em; }

.panel-overlay {
	top: 660px !important;
	padding-top: 10px !important;
	height: 60px !important;
	text-align: center;
	background: #000 !important;
	font-family: Arial, Helvetica, sans-serif;
	z-index: 1010;
}
.panel-overlay p, .panel-overlay h2 {
	color: #666 !important;
}
.panel-overlay p, .panel-overlay h3 {
	font-size: 7pt !important;
	text-transform: uppercase;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
  line-height: 12pt !important;
}
.panel-overlay h3 {
	color: #ababab;
	letter-spacing: 2px;
	font-weight: normal;
	margin-bottom: 5px;
}
.overlay {
	top: 560px !important;
	opacity: 0 !important;
	height: 90px !important;
	background: #000 !important;
}
.strip_wrapper {
	z-index: 1200;
	height: 90px !important;
	min-width: 100px;
	margin-top: 10px;
}
#pointer {
	border: 1px solid #333 !important;
	width: 75px !important;
	height: 75px !important;
	z-index: 1201 !important;
}
#pointer img {
	display: none;
}


/* PANEL OVERLAY BACKGROUND */
.panel .overlay-background {  }

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay { }
.panel .panel-overlay a {  }
.panel .panel-overlay h2 { margin:15px 0 0 !important; color: white; }

.galleryview .panel img { width: 560px; height: 560px;}

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip { margin: 5px !important; text-indent: 0px !important;}

.filmstrip li { margin: 5px !important; }

.filmstrip li:before { content: none !important; }

.filmstrip img {width: 75px; height: 75px; }

.nav-prev, .nav-next {
	top: 605px !important;
	z-index: 1200;
}


/* FILMSTRIP FRAMES (contains both images and captions) */
.frame {}

/* WRAPPER FOR FILMSTRIP IMAGES */
.frame .img_wrap { border: 1px solid #aaa; }

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.frame.current .img_wrap { border-color: #000; }

/* FRAME IMAGES */
.frame img { border: none; }

/* FRAME CAPTION */
.frame .caption { font-size: 11px; text-align: center; color: #888; }

/* CURRENT FRAME CAPTION */
.frame.current .caption { color: #000; }

/* POINTER FOR CURRENT FRAME */
.pointer { border-color: #000; }

/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
*html .pointer { filter: chroma(color=pink); }