/*

	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="gv-panel_wrap">
			<div class="gv-panel">
				<img src="path/to/image.jpg" />
				<div class="gv-panel-overlay">
					...overlay content...
				</div>
				<div class="gv-overlay-background"></div>
			</div>
		</div>
		<div class="gv-strip_wrapper">
			<ul class="gv-filmstrip">
				<li class="gv-frame current">
					<img src="path/to/thumbnail.jpg" />
					<div class="gv-caption">caption text</div>
				</li>
				<li class="gv-frame">
					<img src="path/to/thumbnail.jpg" />
					<div class="gv-caption">caption text</div>
				</li>
			</ul>
		</div>
	</div>
		

*/

/* GALLERY LIST */
/* IMPORTANT - Change '#myGallery' to the ID of your gallery list to prevent a flash of unstyled content */
#myGallery { visibility: hidden; }

/* GALLERY CONTAINER */
.gv-gallery { overflow: hidden; }

/* LOADING BOX */
.gv-loader { background: url(loader.gif) center center no-repeat #fff; }


/*************************************************/
/**   PANEL STYLES								**/
/*************************************************/

/* GALLERY PANELS */
.gv-panel { filter: inherit; }

/* DEFINE HEIGHT OF PANEL OVERLAY */
/* NOTE - It is best to define padding here as well so overlay and background retain identical dimensions */
/*.gv-panel .gv-panel-overlay,*/
.gv-panel .gv-overlay-background { height: 0; padding: 0; }

/* PANEL OVERLAY BACKGROUND */
/* .gv-panel .gv-overlay-background { background: #222; } */

/* PANEL OVERLAY CONTENT */
.gv-panel .gv-panel-overlay  
{
    color: white;
    width:320px !important;
    height:50px !important;
    position:absolute;
    bottom:0 !important;
    right:0 !important;
    background-color:black !important;
    opacity: 0.8 !important;
	filter:alpha(opacity=80) !important;
    border-right:black 3px solid;
    border-left:black 3px solid;
	line-height:20px;
	overflow:hidden;
	margin:0 !important;
	white-space:normal;
	font-family:'droid arabic kufi';
    font-size: 18px;
    font-weight: bolder;
}
.gv-panel .gv-panel-overlay a
{
    color: white;
    display:block;
    height:50px;
    /*background-color:#ae1b6c !important;*/
    /*opacity: 0.8 !important;
	filter:alpha(opacity=80) !important;*/
	line-height:24px;
	white-space:normal;
	font-family:'droid arabic kufi';
    font-size: 16px;
    font-weight: normal;
}
.gv-panel .gv-panel-overlay a { color: white; text-decoration: none;}

/* CONTENT PANELS */
.gv-panel-content { overflow-y: auto; }


/*************************************************/
/**   FILMSTRIP STYLES							**/
/*************************************************/


/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.gv-filmstrip { margin: 5px; }

/* FILMSTRIP FRAMES (contains both images and captions) */
.gv-frame {}

/* WRAPPER FOR FILMSTRIP IMAGES */
.gv-frame .gv-img_wrap {}

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.gv-frame.current .gv-img_wrap {}

/* FRAME IMAGES */
.gv-frame img { border: none; }

/* FRAME CAPTION */
.gv-frame .gv-caption { height: 58px; line-height: 18px; font-size: 12px; text-align: center;
                        color:white; }

/* CURRENT FRAME CAPTION */
.gv-frame.current .gv-caption { }

/* POINTER FOR CURRENT FRAME */
.gv-pointer {
	border-color: black;
}

/* NAVIGATION BUTTONS */
.gv-nav-next {
	height: 22px;
	width: 22px;
	cursor: pointer;
	background: url(dark/next.png) top left no-repeat;
}
.gv-nav-prev {
	height: 22px;
	width: 22px;
	cursor: pointer;
	background: url(dark/prev.png) top right no-repeat;
}
.gv-panel-nav-next {
	height: 42px;
	width: 42px;
	cursor: pointer;
	background: url(dark/panel-nav-next.png) top left no-repeat;
}
.gv-panel-nav-prev {
	height: 42px;
	width: 42px;
	cursor: pointer;
	background: url(dark/panel-nav-prev.png) top right no-repeat;
}

/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
*html .gv-pointer {
	filter: chroma(color=pink);
}