/*

	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="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 */
#photos {
    visibility:hidden;
}
.gallery {
    padding:0px;
   
}
.loader {
    background:url("loader.gif") no-repeat scroll center center #DDDDDD;
}
.panel {
}
.panel .panel-overlay, .panel .overlay-background {
    height:60px;
    padding:0px;
}
.panel .overlay-background {
    background:none repeat scroll 0 0 #222222;
}
.panel .panel-overlay {
    color:white;
    font-size:1em;
}
.panel .panel-overlay a {
    color:white;
    font-weight:bold;
    text-decoration:underline;
}
.filmstrip {
    margin:5px;
}
.frame {
}
.frame .img_wrap {
    border:1px solid #AAAAAA;
}
.frame.current .img_wrap {
    border-color:#000000;
}
.frame img {
    border:medium none;
}
.frame .caption {
    color:#888888;
    font-size:11px;
    text-align:center;
}
.frame.current .caption {
    color:#000000;
}
.pointer {
    border-color:#000000;
}
