/*

	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>
		

*/


/* GALLERY PANELS */
.panel {padding-top: 0px; text-align: center}
/*.panel img{ border: 10px solid #FFFFFF; }*/

/* PANEL OVERLAY CONTENT */
.panel-overlay { text-align:left; }

/*.galleryview .panel img { border: 15px solid #FFFFFF;}*/
/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
/*.filmstrip { margin: 5px !important; text-indent: 0px !important;}
.filmstrip li { margin:5px 10px !important; }  keep 5px for top/bottom, change left/right for space beetween thumbs 
.filmstrip li:before { content: none !important; }*/

/* white border around image not working properly /*
/* .filmstrip li { border: 5px solid #FFFFFF; }*/

/* 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); }

div.gallery-background-text{ padding-left: 10px; padding-right:10px;}
