/*
	 
	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 */
 #myGallery {
    display: none;
}
.gv_galleryWrap {
    position: relative;
    background: transparent;
    font-size: 11pt;
}
/* GALLERY DIV */
 .gv_gallery {
    overflow: hidden;
    position: relative;
}

/*************************************************/

/**   PANEL STYLES								**/

/*************************************************/
 .gv_panelWrap {
    position: absolute;
    margin-left:100px;
    overflow: hidden;
}
.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 {
     float:right;
    position: relative;
    top: 0;
    right: 0;
    overflow: hidden;
}
.gv_panel img {
    position: absolute;
    width:600px;
}
.gv_overlay {
    position: absolute;
    background: #222;
    color: white;
    z-index: 200;
}
.gv_overlay h4 {
    color: white;
    margin: 1em;
    font-weight: bold;
}
.gv_overlay p {
    color: white;
    margin: 1em;
}
.gv_infobar {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0 0.5em;
    height: 1.5em;
    font-size: 10pt;
    color: black;
    position: absolute;
    bottom: 0;
   right: 12px;
    display: none;
    vertical-align: middle;
    z-index: 20;
}
/*************************************************/

/**   FILMSTRIP STYLES							**/

/*************************************************/
 .gv_filmstripWrap {
    float:left;
    overflow:hidden;
    position: absolute;
}
/* FILMSTRIP */
 .gv_filmstrip {
    margin-left: 0;
    padding: 0;
    position: absolute;
    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:black;
}
/* CURRENT FRAME CAPTION */
 .gv_frame.current .gv_caption {
}
/* POINTER FOR CURRENT FRAME */
 .gv_pointer {
    border-color: white;
}
/* NAVIGATION BUTTONS */
 .gv_navNext, .gv_navPrev {
    *display:inline;
    vertical-align: middle;
}
.gv_navNext:hover, .gv_navPrev:hover {

}
.gv_panelNavPrev, .gv_panelNavNext {
    opacity:0.6;
    
        position: absolute;
    display: block;
    z-index: 200;
    top:0px;

}
.gv_panelNavPrev:hover, .gv_panelNavNext:hover {

}
.gv_panelNavNext {
    height: 20px;
    width: 20px;
    cursor: pointer;
    background: url(themes/light/panel-next.png) top left no-repeat;
    padding-right:15px;
}
.gv_panelNavPrev {
    height: 20px;
    width: 20px;
    cursor: pointer;
    background: url(themes/light/panel-prev.png) top right no-repeat;
}