/*
/* GALLERY LIST */
/* IMPORTANT - Change '#myGallery' to the ID of your gallery list to prevent a flash of unstyled content */
#myGallery {
    display: none;
}

.gv_galleryWrap {
    background-color: #f0f0f0;
    margin: 10px 0 10px 0;
    position: relative;
}

/* GALLERY DIV */
.gv_gallery {
    overflow: hidden;
    position: relative;
}

.gv_imageStore {
    left: -10000px;
    position: absolute;
    top: -10000px;
    visibility: hidden;
}

/*************************************************/
/**   PANEL STYLES								**/
/*************************************************/

.gv_panelWrap { filter: inherit; position: absolute; overflow: hidden; }

.gv_panel-loading { background: url(/Images/Progress/waiting96-ffffff.gif) 50% 50% no-repeat #fff; }
.gv_frame-loading { background: url(/Images/Progress/waiting48-ffffff.gif) 50% 50% no-repeat #fff; }

/* GALLERY PANELS */
.gv_panel { filter: inherit; position: absolute; top: 0; left: 0; overflow: hidden; z-index: 100; }
.gv_panel img { position: absolute; }

.gv_overlay {
    background: #000;
    background: rgba(0,0,0,.5);
    position: absolute;
    color: white;
    z-index: 200;
}
.gv_showOverlay { 
	position: absolute; 
	width: 48px; 
	height: 48px; 
	background: url(/Images/appbar.book.open.writing.light.png) #800880; 
	background: url(/Images/appbar.book.open.writing.light.png) rgba(0,0,0,.5); 
	cursor: pointer;
	z-index: 200;
}
.gv_overlay h4 {
    color: #fff;
    font-size: 2em;
    margin: 10px 10px 0 10px;
}
.gv_overlay p {
    color: #fff;
    font-size: 1em;
    margin: 5px 10px 10px 10px;
}
    .gv_overlay p a {
        color: #fff;
        font-weight: bold;
        text-decoration: none;
    }
    .gv_overlay p a:hover {
        color: #0daaff;
    }

.gv_infobar {
    background: #000;
	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 {
        overflow: hidden !important;
        position: relative;
    }

/* 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 {
        color: #000;
        font-size: 13px;
        height: 15px;
        line-height: 17px;
        text-align: center;
    }

/* CURRENT FRAME CAPTION */
    .gv_frame.current .gv_caption {
        color: #000;
    }

/* 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: 48px;
	width: 48px;
	cursor: pointer;
	background: url(/Images/appbar.control.play.png) top left no-repeat;
}
.gv_navPause {
	height: 48px;
	width: 48px;
	cursor: pointer;
	background: url(/Images/appbar.control.pause.png) top left no-repeat;
}
.gv_navNext {
	height: 48px;
	width: 48px;
	cursor: pointer;
	background: url(/Images/appbar.control.fastforward.png) top left no-repeat;
}
.gv_navPrev {
	height: 48px;
	width: 48px;
	cursor: pointer;
	background: url(/Images/appbar.control.rewind.png) top right no-repeat;
}
.gv_panelNavNext {
	height: 48px;
	width: 48px;
	cursor: pointer;
	background: url(/Images/appbar.chevron.right.png) top left no-repeat;
}
.gv_panelNavPrev {
	height: 48px;
	width: 48px;
	cursor: pointer;
	background: url(/Images/appbar.chevron.left.png) top right no-repeat;
}