/*

	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.
*/
/* ���������jquery�����www.jq22.com */
/* gallery list */
/* important - change '#mygallery' to the id of your gallery list to prevent a flash of unstyled content */
#mygallery { display: none; }

.gv_gallerywrap { position: relative; background: #222; font-size: 10pt; }

/* gallery div */
.gv_gallery { overflow: hidden; position: relative;}

.gv_imagestore { visibility: hidden; position: absolute; top: -10000px; left: -10000px; }


/*************************************************/
/**   panel styles								**/
/*************************************************/

.gv_panelwrap { filter: inherit; position: absolute; overflow: hidden; }

.gv_panel-loading { background:  50% 50% no-repeat #aaa; }
.gv_frame-loading { background:  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 { position: absolute; }

.gv_overlay { position: absolute; background: #222; color: white; z-index: 200; }
.gv_showoverlay { 
	position: absolute; 
	width: 20px; 
	height: 20px; 
	background: url(/uploads/image/ccitlight/info.png) #222; 
	cursor: pointer;
	z-index: 200;
}
.gv_overlay h4 { color: white; margin: 1em; font-weight: bold; }
.gv_overlay p { color: white; margin: 1em; }

.gv_infobar {
	background: #222;
	padding: 0 0.5em;
	line-height: 1.5em;
	height: 1.5em;
	font-size: 10pt;
	font-weight: bold;
	color: white;
	
	position: absolute;
	bottom: 0;
	right: 0;
	display: none;
	vertical-align: middle;
	z-index: 2000;
	
}


/*************************************************/
/**   filmstrip styles							**/
/*************************************************/

.gv_filmstripwrap { overflow: hidden; position: absolute; }


/* filmstrip */
.gv_filmstrip { margin: 0; padding: 0; position: absolute; top: 0; left: 0; }

/* 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: absolute;
}
.gv_navplay,
.gv_navpause,
.gv_navnext,
.gv_navprev {
	
	opacity: 0.3;
	-moz-opacity: 0.3;
	-khtml-opacity: 0.3;
	filter:alpha(opacity=30);
	display:-moz-inline-stack;
	display:inline-block;
	zoom:1;
	*display:inline;
	vertical-align: middle;
}
.gv_navplay:hover,
.gv_navpause:hover,
.gv_navnext:hover,
.gv_navprev:hover {
	opacity: 0.8;
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	filter:alpha(opacity=80);
}

.gv_panelnavprev,
.gv_panelnavnext {
	position: absolute;
	display: none;
	opacity: 0.50;
	-moz-opacity: 0.50;
	-khtml-opacity: 0.50;
	filter:alpha(opacity=50);
	z-index: 200;
}

.gv_panelnavprev:hover,
.gv_panelnavnext:hover {
	opacity: 0.9;
	-moz-opacity: 0.9;
	-khtml-opacity: 0.9;
	filter:alpha(opacity=90);
}

.gv_navplay {
	height: 30px;
	width: 30px;
	cursor: pointer;
	background: url(/uploads/image/ccitlight/play-big.png) top left no-repeat;
}
.gv_navpause {
	height: 30px;
	width: 30px;
	cursor: pointer;
	background: url(/uploads/image/ccitlight/pause-big.png) top left no-repeat;
}
.gv_navnext {
	height: 20px;
	width: 20px;
	cursor: pointer;
	background: url(/uploads/image/ccitlight/next.png) top left no-repeat;
}
.gv_navprev {
	height: 20px;
	width: 20px;
	cursor: pointer;
	background: url(/uploads/image/ccitlight/prev.png) top right no-repeat;
}
.gv_panelnavnext {
	height: 40px;
	width: 40px;
	cursor: pointer;
	background: url(/uploads/image/ccitlight/panel-next-big.png) top left no-repeat;
}
.gv_panelnavprev {
	height: 40px;
	width: 40px;
	cursor: pointer;
	background: url(/uploads/image/ccitlight/panel-prev-big.png) top right no-repeat;
}/* ���������jquery�����www.jq22.com */