﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

#Gallery-View-Wrapper { margin-left: auto; margin-right: auto; width: 100%; }
#Gallery-Wrapper { margin-right: 10px; width: 145px; }
#Gallery-Background 
{
	width: inherit; 
	text-align: center;
	display: table-cell; 
	vertical-align: top; 
}
#Gallery-Background * { vertical-align: top; }
#Gallery-Background span { display: inline-block; height: 100%; }
#Gallery-Title {
	font-weight: bold; 
	display: block; 
	text-align: center; 
	height: 50px;
	margin-bottom: 10px;
}

#Gallery-Photos-Wrapper { margin-right: 30px; height: 200px; width: 145px; }
#Gallery-Photos-Background {
	width: inherit; 
	display: table-cell; 
	vertical-align: top; 
	margin-bottom: 5px;
}
#Gallery-Photos-Background * { vertical-align: top; }
#Gallery-Photos-Background span { display: inline-block; height: 100%; }

#Gallery-Photo-Background { width: inherit; }
#Gallery-Photo-Background table { text-align: center; }
.Gallery-Photo-Description {
	background: #EAEAEA;
	padding: 5px;
	margin-top: 2px;
	font-style: italic;
	border: 1px dotted;
}
#Gallery-Photo-Title {
	font-size: 1.5em;
	font-weight: bold;
	display: block;
	padding-bottom: 10px;
	height: 40px;
}

.Gallery-Photo-DetailsView { margin-bottom: 8px; }

/*

	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="gv-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 '#myGallery' to the ID of your gallery list to prevent a flash of unstyled content */
#myGallery { visibility: hidden; }

/* GALLERY CONTAINER */
.gv-gallery { overflow: hidden; }

/* LOADING BOX */
.gv-loader { background: url(galleryview/loader.gif) center center no-repeat #eee; }

/* GALLERY PANELS */
.gv-panel {}

/* DEFINE HEIGHT OF PANEL OVERLAY */
/* NOTE - It is best to define padding here as well so overlay and background retain identical dimensions */
.gv-panel .gv-panel-overlay,
.gv-panel .gv-overlay-background { height: 2em; padding: 1em; }

/* PANEL OVERLAY BACKGROUND */
.gv-panel .gv-overlay-background { background: #111; }

/* PANEL OVERLAY CONTENT */
.gv-panel .gv-panel-overlay { color: white; }
.gv-panel .gv-panel-overlay a { color: white; text-decoration: underline; font-weight: bold; }

.gv-panel-overlay h3 {
	font-size: 1.2em;
	color: white;
}
.gv-panel-overlay p {

}

/* CONTENT PANELS */
.gv-panel-content { overflow-y: auto; }

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.gv-filmstrip { margin: 5px; }

/* FILMSTRIP FRAMES (contains both images and captions) */
.gv-frame {}

/* WRAPPER FOR FILMSTRIP IMAGES */
.gv-frame .gv-img_wrap { border: 2px solid black; }

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.gv-frame.current .gv-img_wrap { border: 2px solid #D50000; }

/* FRAME IMAGES */
.gv-frame img { border: none; }

/* FRAME CAPTION */
.gv-frame .gv-caption { 
	font-size: 11px; 
	text-align: left; 
	color: white; 
	background: #111; 
	border: 2px solid black; 
	border-top: none; 
	padding: 2px 10px; 
	height: 2em;
	line-height: 2em;
}

/* CURRENT FRAME CAPTION */
.gv-frame.current .gv-caption { 
	color: white; 
	border: 2px solid #D50000; 
	border-top: none; 
}

/* POINTER FOR CURRENT FRAME */
.gv-pointer {
	border-color: red;
}

/* NAVIGATION BUTTONS */
.gv-nav-next {
	height: 22px;
	width: 22px;
	cursor: pointer;
	background: url(galleryview/next.png) top left no-repeat;
}
.gv-nav-prev {
	height: 22px;
	width: 22px;
	cursor: pointer;
	background: url(galleryview/prev.png) top right no-repeat;
}
.gv-panel-nav-next {
	height: 42px;
	width: 42px;
	cursor: pointer;
	background: url(galleryview/panel-nav-next.png) top left no-repeat;
}
.gv-panel-nav-prev {
	height: 42px;
	width: 42px;
	cursor: pointer;
	background: url(galleryview/panel-nav-prev.png) top right no-repeat;
}

/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
*html .gv-pointer {
	filter: chroma(color=pink);
}
