/*

	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="gv-gallery-container">
		<div class="gv-gallery">
			<div class="gv-panel_wrap">
				<div class="gv-panel">
					<img src="path/to/image.jpg" />
					<div class="gv-panel-overlay">
						...overlay content...
					</div>
					<div class="gv-overlay-background"></div>
				</div>
			</div>
			<div class="gv-strip_wrapper">
				<ul class="gv-filmstrip">
					<li class="gv-frame current">
						<img src="path/to/thumbnail.jpg" />
						<div class="gv-caption">caption text</div>
					</li>
					<li class="gv-frame">
						<img src="path/to/thumbnail.jpg" />
						<div class="gv-caption">caption text</div>
					</li>
				</ul>
			</div>
		</div>
	</div>
		

*/

/* GALLERY LIST */
/* IMPORTANT - Change '#myGallery' to the ID of your gallery list to prevent a flash of unstyled content */
#myGallery { display: none; }

/* GALLERY CONTAINER */
.gv-gallery-container { padding: 5px; background: #333; }

/* GALLERY DIV */
.gv-gallery { overflow: hidden; }


/*************************************************/
/**   PANEL STYLES								**/
/*************************************************/

.gv-panel_wrap { filter: inherit; }

.gv-panel-loading { background: url(loader.gif) 50% 50% no-repeat #aaa; }
.gv-frame-loading { background: url(loader.gif) 50% 50% no-repeat #aaa; }

/* GALLERY PANELS */
.gv-panel { filter: inherit; }

.gv-panel img { }

/* 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: 5em; padding: 1em; }

/* PANEL OVERLAY BACKGROUND */
.gv-panel .gv-overlay-background { background: #222; }

/* PANEL OVERLAY CONTENT */
.gv-panel .gv-panel-overlay { color: white; }
.gv-panel .gv-panel-overlay a { color: white; text-decoration: underline; font-weight: bold; }

/* CONTENT PANELS */
.gv-panel-content { overflow-y: auto; }

.gv-infobar {
	background: #333;
	padding: 0 0.5em;
	line-height: 1.5em;
	height: 1.5em;
	font-size: 1em;
	font-weight: bold;
	color: white;
	border-top-left-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-webkit-border-top-left-radius: 6px;
}


/*************************************************/
/**   FILMSTRIP STYLES							**/
/*************************************************/


/* FILMSTRIP */
.gv-filmstrip { }

/* FILMSTRIP FRAMES (contains both images and captions) */
.gv-frame { cursor: pointer; }

/* WRAPPER FOR FILMSTRIP IMAGES */
.gv-frame .gv-img_wrap {}

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.gv-frame.current .gv-img_wrap {}

/* FRAME IMAGES */
.gv-frame img { border: none; }

/* FRAME CAPTION */
.gv-frame .gv-caption { height: 14px; line-height: 14px; font-size: 10px; text-align: center; color:black; }

/* CURRENT FRAME CAPTION */
.gv-frame.current .gv-caption { }

/* POINTER FOR CURRENT FRAME */
.gv-pointer {
	border-color: black;
}

/* NAVIGATION BUTTONS */
.gv-nav-play,
.gv-nav-pause,
.gv-nav-next,
.gv-nav-prev {
	opacity: 0.5;
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	filter:alpha(opacity=30);
}
.gv-nav-play:hover,
.gv-nav-pause:hover,
.gv-nav-next:hover,
.gv-nav-prev:hover {
	opacity: 0.8;
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	filter:alpha(opacity=80);
}

.gv-panel-nav-prev,
.gv-panel-nav-next {
	opacity: 0.50;
	-moz-opacity: 0.50;
	-khtml-opacity: 0.50;
	filter:alpha(opacity=50);
}

.gv-panel-nav-prev:hover,
.gv-panel-nav-next:hover {
	opacity: 0.9;
	-moz-opacity: 0.9;
	-khtml-opacity: 0.9;
	filter:alpha(opacity=90);
}

.gv-nav-play {
	height: 30px;
	width: 30px;
	cursor: pointer;
	background: url(themes/new/dark2/play-big.png) top left no-repeat;
}
.gv-nav-pause {
	height: 30px;
	width: 30px;
	cursor: pointer;
	background: url(themes/new/dark2/pause-big.png) top left no-repeat;
}
.gv-nav-next {
	height: 20px;
	width: 20px;
	cursor: pointer;
	background: url(themes/new/dark2/next.png) top left no-repeat;
}
.gv-nav-prev {
	height: 20px;
	width: 20px;
	cursor: pointer;
	background: url(themes/new/dark2/prev.png) top right no-repeat;
}
.gv-panel-nav-next {
	height: 40px;
	width: 40px;
	cursor: pointer;
	background: url(themes/new/dark2/next.png) top left no-repeat;
}
.gv-panel-nav-prev {
	height: 40px;
	width: 40px;
	cursor: pointer;
	background: url(themes/new/dark2/prev.png) top right no-repeat;
}

/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
*html .gv-pointer {
	filter: chroma(color=pink);
}