/*

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

/* GALLERY CONTAINER */
.gallery { background-color:#6A5F43; /*border: 1px solid #aaa; padding: 5px;*/}

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

/* GALLERY PANELS */
.panel { top:0; left:0; margin:7px; border:#F4EECE 1px solid; background:none; }

/* 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 { margin:0 0 0 238px; background:transparent url(../images/slideshow/panel-overlay-backing.png) top left repeat-y; }
.panel .panel-overlay,
.panel .overlay-background { height: 81px; padding:0; }
.panel .overlay { background:none; }

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

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay .ligne1,
.panel .panel-overlay .ligne2,
.panel .panel-overlay .ligne3 { display:block; width:343px; text-align:center; color:#000; letter-spacing:2px; font-family:Georgia, "Times New Roman", Times, serif; }
.panel .panel-overlay .ligne1 { font-size:14px; line-height:20px; }
.panel .panel-overlay .ligne2 { font-size:24px; line-height:36px; }
.panel .panel-overlay .ligne3 { font-size:12px; line-height:16px; }
.panel .panel-overlay { color:#000; font-size: 0.7em; }
.panel .panel-overlay a { color:#000; text-decoration: underline; font-weight: bold; }

img.nav_prev {
	left:-10px;
}

/* 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:#666 1px solid; }

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.current .img_wrap { border-color:#FFF; }

/* 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: #000; }

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

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