/*

	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 */
#vtour { visibility: hidden; }

/* LOADING BOX */
.loader { background: url(loading.gif) center center no-repeat #442; }

/* GALLERY CONTAINER */
/*.gallery { background: #000; border: 1px solid YellowGreen; padding: 2px;}*/
.gallery { background: transparent; padding: 0px;}

/* GALLERY PANELS - autocentered */
.panel {
	margin-right:auto;
	margin-left:auto;
	border:inset 4px white;
	background-color:black;
}

/* 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:3em;padding:0.37em 1em 0.37em 1em; }

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

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay { color: white; font-size: 1em; }
.panel .panel-overlay a { color: GreenYellow; text-decoration:underline; font-weight: bold; overflow: visible;}

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip { border:solid 1px none;margin: 20px; #ffffff#ffffff#ffffff}

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

/* WRAPPER FOR FILMSTRIP IMAGES */
.frame .img_wrap { border: 1px solid #aaa; }

/* modified highlite color 3/15/10 ajj */
/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.frame.current .img_wrap { border-color: GreenYellow; }

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

/* FRAME CAPTION */
.frame .caption { font-size: 11px; text-align: center; color: #888; }

/* CURRENT FRAME CAPTION */
.frame.current .caption { color: #ccc; }

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

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