/*

	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 */
/*#photos { visibility: hidden; }*/
.galleryview {
	
	BORDER-RIGHT: black 1px solid;	
	BORDER-TOP: black 1px solid;	
	BACKGROUND: black;	
	VISIBILITY: visible;	
	MARGIN: 0px;	
	BORDER-LEFT: black 1px solid;	
	WIDTH: 696px;	
	BORDER-BOTTOM: black 1px solid;	
	POSITION: relative;	
	HEIGHT: 560px
	
}

/* GALLERY CONTAINER */
.gallery { background: #ddd; border: 1px solid #aaa; padding: 5px;}

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

/* GALLERY PANELS */
.panel {
	background: #000;
	BACKGROUND: black;	
	LEFT: 0px;	
	OVERFLOW: hidden;	
	WIDTH: 696px;	
	POSITION: absolute;	
	TOP: 0px;	
	HEIGHT: 450px
	
	}

	
/* 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: 60px; padding: 0 1em; }

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

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay { color: white; font-size: 0.7em; }
.panel .panel-overlay a { color: white; text-decoration: underline; font-weight: bold; }

	
.bd .img_selected {
	
	BORDER-TOP-WIDTH: 2px;	
	BORDER-LEFT-WIDTH: 2px;	
	BORDER-BOTTOM-WIDTH: 2px;	
	CURSOR: pointer;	
	BORDER-RIGHT-WIDTH: 2px;
	border:2px solid red;
	width :96px;
	height : 96px;
}

.bd .img_selected01 {
	
	BORDER-TOP-WIDTH: 2px;	
	BORDER-LEFT-WIDTH: 2px;	
	BORDER-BOTTOM-WIDTH: 2px;	
	CURSOR: pointer;	
	BORDER-RIGHT-WIDTH: 2px;
	border:2px solid red;
	width :41px;
	height : 41px;
}

	
.strip_wrapper {
	
	LEFT: 78px;	
	OVERFLOW: hidden;	
	WIDTH: 540px;	
	POSITION: absolute;	
	TOP: 450px;	
	HEIGHT: 110px
}

.strip_wrapper01 {
	
	LEFT: 78px;	
	OVERFLOW: hidden;	
	WIDTH: 540px;	
	POSITION: absolute;	
	TOP: 450px;	
	HEIGHT: 110px
}
/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip { 
	margin: 5px; 
	PADDING-RIGHT: 0px;	
	PADDING-LEFT: 0px;	
	Z-INDEX: 900;	
	BACKGROUND: black;	
	LEFT: 0px;	
	PADDING-BOTTOM: 0px;	
	MARGIN: 0px;	
	WIDTH: 550px;	
	PADDING-TOP: 0px;	
	LIST-STYLE-TYPE: none;	
	POSITION: absolute;	
	TOP: 0px;	
	HEIGHT: 110px
}

.filmstrip li {
	
	PADDING-RIGHT: 0px;	
	MARGIN-TOP: 5px;	
	PADDING-LEFT: 0px;	
	Z-INDEX: 901;	
	FLOAT: left;	
	MARGIN-BOTTOM: 0px;	
	PADDING-BOTTOM: 0px;	
	CURSOR: pointer;	
	MARGIN-RIGHT: 10px;	
	PADDING-TOP: 0px;	
	POSITION: relative;	
	HEIGHT: 100px;
	list-style:none;
}

.filmstrip01 { 
	margin: 5px; 
	PADDING-RIGHT: 0px;	
	PADDING-LEFT: 0px;	
	Z-INDEX: 900;	
	BACKGROUND: black;	
	LEFT: 0px;	
	PADDING-BOTTOM: 0px;	
	MARGIN: 0px;	
	WIDTH: 550px;	
	PADDING-TOP: 0px;	
	LIST-STYLE-TYPE: none;	
	POSITION: absolute;	
	TOP: 0px;	
	HEIGHT: 110px
}

.filmstrip01 li {
	
	PADDING-RIGHT: 0px;	
	MARGIN-TOP: 5px;	
	PADDING-LEFT: 0px;	
	Z-INDEX: 901;	
	FLOAT: left;	
	MARGIN-BOTTOM: 0px;	
	PADDING-BOTTOM: 0px;	
	CURSOR: pointer;	
	MARGIN-RIGHT: 10px;	
	PADDING-TOP: 0px;	
	POSITION: relative;	
	HEIGHT: 45px;
	width:45px;
	list-style:none;
}
/* FILMSTRIP FRAMES (contains both images and captions) */
.frame {}

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

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

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

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