/*

	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 LIST */
/* IMPORTANT - Change '#photos' to the ID of your gallery list to prevent a flash of unstyled content */
#photos { visibility: hidden; }

/* GALLERY CONTAINER */
.gallery {
}

/* LOADING BOX */
.loader {
	background-image: url(../images/interface/Dividers-logo.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

/* GALLERY PANELS */
.panel {
	text-align: center;
}

/* 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 {
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
}

/* PANEL OVERLAY BACKGROUND */
.panel .overlay-background {
	background-color: #FFF;
}

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay {

}
.panel .panel-overlay a {
	text-decoration: none;
}

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip {
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}

/* 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 {
}

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

/* FRAME CAPTION */
.frame .caption {
	text-align: left;
}

/* CURRENT FRAME CAPTION */
.frame.current .caption {
}

/* POINTER FOR CURRENT FRAME */
.pointer {

}

/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE 
*html .pointer {
	filter: chroma(color=pink);
}*/
.gallery-header-text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	margin-top: 6px;
	display: block;
	margin-bottom: 6px;
	text-align: left;
}
.gallery-content-text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	margin-top: 6px;
	display: block;
	margin-bottom: 6px;
	text-align: left;
	text-decoration: none;
}
.gallery-content-text a {
	color: #FFF;
	text-decoration: none;
	font-weight: normal;
}
.gallery-content-text a:hover {
	color: #C7D8E7;
	text-decoration: none;
}
.gallery-thumb-text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FFF;
	margin-top: 6px;
	display: block;
	margin-bottom: 6px;
}
