#photos/*

	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 */
 {
	visibility: hidden;
	left: 0px;
	top: 0px;
}
.td_sidebar {
	vertical-align: top;
	margin-top: 15px;
}

/* GALLERY CONTAINER */
.gallery {
	padding: 5px;
}

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

/* GALLERY PANELS */
.panel {
	margin: 0px;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 30px;
	padding-left: 15px;
	background-position: center;
}

/* 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: 18px;
	padding: 3px;
	font-size: 10px;
	font-weight: bolder;
	text-align: center;
}

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

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay {
	color: #333333;
}
.panel .panel-overlay a { text-decoration: underline; font-weight: bolder; }

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip {

}

/* FILMSTRIP FRAMES (contains both images and captions) */
.frame {
	margin: 5;
}

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

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

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

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

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

/* POINTER FOR CURRENT FRAME */
.pointer {
	border-top-color: #666666;
	border-right-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #666666;
}

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