/*
	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.
*/

/* GALLERY LIST */
/* IMPORTANT - Change '#myGallery' to the ID of your gallery list to prevent a flash of unstyled content */

.gv_galleryWrap { position: relative; padding:0 !important; background:url(../images/panel_bg.gif) bottom center no-repeat; width:940px !important;}
/* GALLERY DIV */
.gv_gallery { overflow: hidden; position: relative; height:314px !important; width:940px !important;}
.gv_imageStore { visibility: hidden; position: absolute; top: -10000px; left: -10000px; }

/*************************************************/
/**   PANEL STYLES**/
/*************************************************/

.gv_panelWrap { filter: inherit; position: absolute; overflow: hidden; top:5px !important; left:5px !important; }

/*
.gv_panel-loading { background: url(img-loader.gif) 50% 50% no-repeat #aaa; }
.gv_frame-loading { background: url(img-loader.gif) 50% 50% no-repeat #aaa; }
*/

/* GALLERY PANELS */
.gv_panel { filter: inherit; position: absolute; top: 0; left: 0; overflow: hidden; z-index: 100;}
.gv_panel img {}

/*************************************************/
/**   FILMSTRIP STYLES							**/
/*************************************************/

.gv_filmstripWrap { overflow: hidden; position: absolute; left:36px !important; top:247px !important; width:870px !important;}

/* FILMSTRIP */
.gv_filmstrip { margin: 0; padding: 0; position: absolute; top: 0px; left: 0px; }

/* FILMSTRIP FRAMES (contains both images and captions) */
.gv_frame { 
	cursor: pointer;
	float: left;
	position: relative;
	margin: 0;
	padding: 0;
}

/* WRAPPER FOR FILMSTRIP IMAGES */
.gv_frame .gv_thumbnail { position: relative;overflow: hidden !important; }

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.gv_frame.current .gv_thumbnail {}

/* FRAME IMAGES */
.gv_frame img { border: none; position: absolute; }

/* FRAME CAPTION */
.gv_frame .gv_caption { height: 14px; line-height: 14px; font-size: 10px; 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_navWrap {
	text-align: center;
	position: relative;
	top:0px !important;
	left:0px !important;
	width:940px !important;
}
.gv_navPlay,
.gv_navPause,
.gv_navNext,
.gv_navPrev {
	
	display:-moz-inline-stack;
	display:inline-block;
	zoom:1;
	*display:inline;
	vertical-align: middle;
}

.gv_panelNavPrev,
.gv_panelNavNext {
	position: absolute;
	display: none;
	z-index: 200;
}

.gv_navPlay {
	height: 30px;
	width: 30px;
	cursor: pointer;
	/* background: url(themes/light/play-big.png) top left no-repeat; */
	display:none;
}
.gv_navPause {
	height: 30px;
	width: 30px;
	cursor: pointer;
	/* background: url(themes/light/pause-big.png) top left no-repeat #fff; */
	display:none;
}
.gv_navNext {
	height: 74px;
	width: 25px;
	cursor: pointer;
	background: url(../images/panel_next.gif) top left no-repeat;
	position:absolute;
	top:240px;
	right:0px;
}
.gv_navNext:hover{
	background: url(../images/panel_next_on.gif) top left no-repeat;
}
.gv_navPrev {
	height: 74px;
	width: 25px;
	cursor: pointer;
	background: url(../images/panel_prev.gif) top right no-repeat;
	position:absolute;
	top:240px;
	left:0px;
}
.gv_navPrev:hover{
	background: url(../images/panel_prev_on.gif) top right no-repeat;
}
/*
.gv_panelNavNext {
	height: 20px;
	width: 20px;
	cursor: pointer;
	background: url(themes/light/panel-next.png) top left no-repeat;
}
.gv_panelNavPrev {
	height: 20px;
	width: 20px;
	cursor: pointer;
	background: url(themes/light/panel-prev.png) top right no-repeat;
}
*/