@charset "utf-8";
/* CSS Document */

/*

	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.
	NOTE - The markup below represents the DOM generated by the GalleryView plugin, NOT the markup you would include in your HTML file.
		   Refer to README.txt to review markup requirements.
	
	<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 '#gallery' to the ID of your gallery list to prevent a flash of unstyled content */
#gallery { visibility: hidden; }

/* GALLERY CONTAINER */
.gallery { overflow: hidden; }

/* LOADING BOX */
.loader {
	background-color: #eee;
	background-image: url(../images/loading.gif);
	background-repeat: no-repeat;
	background-position: center center;
}

/* GALLERY PANELS */
.panel {
}

/* 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: 2em;
	padding-top: 0.2em;
	padding-right: 0.2em;
	padding-bottom: 0.2em;
	padding-left: 0.5em;
}

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

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay { color: white; }
.panel .panel-overlay a {
	color: #09C;
	font-weight: bold;
	text-decoration: none;
}
.panel .panel-overlay a:hover {
	color: #F00;
	font-weight: bold;
	text-decoration: underline;
}

.panel-overlay h3 {
	font-size: 1em;
	margin-bottom: 0.2em;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}
.panel-overlay p {

}

/* CONTENT PANELS */
.panel-content { overflow-y: auto; }

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip {
	margin: 5px;
}

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

}

/* WRAPPER FOR FILMSTRIP IMAGES */
.frame .img_wrap {
	border: 2px solid black;
	border-bottom: none;
}

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.frame.current .img_wrap {
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
}

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

/* FRAME CAPTION */
.frame .caption {
	font-size: 14px;
	text-align: center;
	color: white;
	height: 1.6em;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 2px;
	background-color: #333333;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: black;
	border-right-color: black;
	border-bottom-color: black;
	border-left-color: black;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: .06em;
}

/* CURRENT FRAME CAPTION */
.frame.current .caption {
	color: white;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #CC0000;
}

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



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