/*

	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 */

/* GALLERY CONTAINER */
#gallery {width: 480px; height: 360px;}
.gallery {border: 1px solid #FFF;padding: 0px; position: relative; width: 480px; height: 360px; visibility: visible;}

/* LOADING BOX */
.loader { background: url(loader2.gif) no-repeat center center; position: absolute; z-index: 100; top: 203px; left: 411px; width: 39px; height: 39px; opacity: 1; }
.loader2 { background: url(loader.gif) no-repeat; position: absolute; z-index: -10000;*z-index: -10000; top: 11px; left: 321px; width: 0px; height: 0px; -moz-opacity:0;filter:alpha(opacity:0);opacity:0 }
/*RY PANELS */
.panel {width: 480px; height: 355px; position: absolute; overflow: hidden; top: 0px; left: 0px;display:none; }
.panel img{/*height: 518px; width: 890px; */position: relative; top: 0px; left: 0px;filter:inherit;  }
/* 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: 25px; padding: 0 0; position: absolute; z-index: 999; width: 480px; left: 0px; bottom: 0px;}

/* PANEL OVERLAY BACKGROUND */
.panel .overlay-background { background: #222;opacity: 0.7;-moz-opacity:0.7;filter:alpha(opacity:70); }

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay { color: white; padding-left:20px;font-size:14px;font-weight:bold;padding-top:5px;}
.panel .panel-overlay a { color: white; text-decoration: underline; font-weight: bold;}

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
/*.filmstrip { margin: 0px; list-style-type: none; list-style-position: initial; list-style-image: initial; padding: 0px;position: absulote; height: 40px;clear:both;}
*/
/* POINTER FOR CURRENT FRAME */
.pointer {height: 40px;width: 40px;border: 1px solid #FFF;background-image: url(themes/light/pointer.png);background-repeat: no-repeat;position: absolute; z-index: 1000; width: 105px; font-size: 0px;/* top: 449px; left: 339.299px;*/ }
.nav-next{position: absolute; cursor: pointer; top: 363px; right: 3px;z-index: 1;}
.nav-prev{position: absolute; cursor: pointer; top: 363px; left: 3px;z-index: 1;}
/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
/**html .pointer {
	filter: chroma(color=pink);
}*/