/*	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_wrap">
			<div class="panel">
				<img src="path/to/image.jpg" />
				<div class="panel-overlay">
					...overlay content...


				</div>
				<div class="overlay-background"></div>
			</div>
		</div>
		<div class="strip_wrapper">
			<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>
	</div>
		  */

/* GALLERY LIST */
/* IMPORTANT - Change '#gallery' to the ID of your gallery list to prevent a flash of unstyled content */
#gallery { visibility: hidden; }
/* GALLERY CONTAINER */
.gallery { overflow: hidden; }
/* LOADING BOX */
.loader { background: url(loader.gif) center center no-repeat #fff; }
/*************************************************/
/**   PANEL STYLES								**/
/*************************************************/
/* GALLERY PANELS */
.panel {}
/* 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: 22px;
 padding: 0.3em 0.6em 0;
 line-height;1.2em;
 text-align:left;
 font-size:12pt;
 font-family:serif
 }
/* PANEL OVERLAY BACKGROUND */
.panel .overlay-background { background: #555; }
/* PANEL OVERLAY CONTENT */
.panel .panel-overlay { color: white; }
.panel .panel-overlay a { color: white; text-decoration: underline; font-weight: bold; }
/* CONTENT PANELS */
.panel-content { overflow-y: auto; }
/*************************************************/
/**   FILMSTRIP STYLES							**/
/*************************************************/
/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip { margin: 5px;background-color:#deeeff; }
/* FILMSTRIP FRAMES (contains both images and captions) */
.frame {} 
/* WRAPPER FOR FILMSTRIP IMAGES */
.frame .img_wrap {} 
/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.frame.current .img_wrap {}
/* FRAME IMAGES */
.frame img { border: none; }
/* FRAME CAPTION */
.frame .caption { height: 1.2em; line-height: 1em; font-size: 8pt; text-align: center;}
/* CURRENT FRAME CAPTION */
.frame.current .caption { }
/* POINTER FOR CURRENT FRAME */
.pointer {
	border-color: black; }
/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */

body 	{background-color:#deeeff;
	text-align:center;
	margin:0 ;
}

div.gallery {position:absolute;
	top:32px;
	margin-top:0px;
	margin-left: auto;
	margin-right: auto;
}

div.panel_wrap {
	position:absolute;
	left:0px;
}

div#bottom {position:absolute;
 	top:660px;
	left:50%;
	margin-left:-512px;
	margin-right:512px;
	margin-top: auto;
	width:800px;
	border:0px solid #888888;
	padding:4px 6px 0 6px;
	font-size:11pt;
	color:#333333;
	line-height:1.6em;
	text-align:center;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

div#comment {position:absolute;
 	top:824px;
	left:50%;
	background:white;
	margin-left:-480px;
	margin-top: 0;
	width:518px;
	border:0px solid #888888;
	padding:2px 2px 0 6px;
	color:#333333;
	font-size:9pt;
	line-height:1.5em;
	text-align:left;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	}

h1#top	{position:absolute;
	left:50%;
	margin-left:-480px;
	margin-right:480px;
	margin-top: auto;
	top:6px;
	width:960px;
	font-size:14pt;
	color:#fff;
	background-color:#22d;
	padding:0;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

div#top2	{position:absolute;
	left:50%;
	margin-left:-478px;
	margin-top: auto;
	top:8px;
	border:0px solid #888888;
	padding:2px 4px 0 4px;
	font-size:10pt;
	color:#222;
	background-color:#fff;
	line-height:1.2em;
	text-align:center;
	border: 1px solid gray;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}


A:hover {text-decoration:underline;
	color:black;
	font-weight:bold;
	}

a	{text-decoration:none;
	}

a#select {background-color:#ffffff;
	color:red;
	font-weight:bold;
}

div.strip_wrapper {background-color:#EEEEEE;
}

.panel-overlay h2,
.panel-overlay div{
	margin:0;
	padding:0 1em;
}

.panel-overlay div {
	line-height: 1.0em;
}

