/*

	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 */
ul.galleryView {
    display: none;
    margin: 0 auto;
    padding: 0;
}

.gv_galleryWrap {
    position: relative;
    background-color: #999;
    font-size: 10pt;
    margin: 0 auto;
}

/* GALLERY DIV */
.gv_gallery {
    overflow: hidden;
    position: relative;
}

.gv_imageStore {
    visibility: hidden;
    position: absolute;
    top: -10000px;
    left: -10000px;
}


/*************************************************/
/**   PANEL STYLES								**/
/*************************************************/

.gv_panelWrap {
    overflow: hidden; 
    position: absolute;

    filter: inherit;
}

.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 {
    overflow: hidden;
    position: absolute;
    z-index: 100; 
    top: 0;
    left: 0;

    filter: inherit;
}
.gv_panel img {
    position: absolute;
}

.gv_overlay {
    position: absolute;
    z-index: 200; 
    background: #222;
    color: white;
}
.gv_showOverlay {
    position: absolute;
    z-index: 200;
    width: 20px;
    height: 20px;
    background: url(themes/dark/info.png) #222;
    cursor: pointer;
}
.gv_overlay h4 {
    margin: 1em;
    color: white;
    font-weight: bold;
}
.gv_overlay p {
    margin: 1em; 
    color: white;
}

.gv_infobar {
    display: none;
    position: absolute;
    z-index: 2000;
    right: 0;
    bottom: 0;
    height: 1.5em;
    padding: 0 .5em;
    background-color: #edeeeb;
    color: #573c32;
    font-size: 10pt;
    vertical-align: middle;
    line-height: 1.5em;
}


/*************************************************/
/**   FILMSTRIP STYLES							**/
/*************************************************/

.gv_filmstripWrap {
    overflow: hidden;
    position: absolute;
}


/* FILMSTRIP */
.gv_filmstrip {
    position: absolute;
    top: 0;
    left: 0; 
    margin: 0;
    padding: 0;
}

/* FILMSTRIP FRAMES (contains both images and captions) */
.gv_frame {
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

/* wrap FOR FILMSTRIP IMAGES */
.gv_frame .gv_thumbnail {
    overflow: hidden !important; 
    position: relative;
}

/* wrap FOR CURRENT FILMSTRIP IMAGE */


/* FRAME IMAGES */
.gv_frame img {
    position: absolute; 
    border: none;
}

/* FRAME CAPTION */
.gv_frame .gv_caption {
    height: 14px;
    color: #000;
    font-size: 10px;
    text-align: center;
    line-height: 14px;
}

/* CURRENT FRAME CAPTION */


/* POINTER FOR CURRENT FRAME */
.gv_pointer {
    border-color: black;
}

/* NAVIGATION BUTTONS */
.gv_navWrap {
    position: absolute;
    margin-right: 20px;
    background-color: #fff;
    text-align: center;
}
.gv_navPlay,
.gv_navPause,
.gv_navNext,
.gv_navPrev {
    display: -moz-inline-stack;
    display: inline-block;
    background-color: #fff;
         opacity: .3;
    vertical-align: middle;
    zoom: 1;

    -moz-opacity: .3;
    -khtml-opacity: .3;
    filter: alpha(opacity=30);
    *display: inline;
}
.gv_navPlay:hover,
.gv_navPause:hover,
.gv_navNext:hover,
.gv_navPrev:hover {
    background-color: #fff;
         opacity: .8;

    -moz-opacity: .8;
    -khtml-opacity: .8;
    filter: alpha(opacity=80);
}

.gv_panelNavPrev,
.gv_panelNavNext {
    display: none;
    position: absolute;
    z-index: 200;
    background-color: #fff;
         opacity: .50;

    -moz-opacity: .50;
    -khtml-opacity: .50;
    filter: alpha(opacity=50);
}

.gv_panelNavPrev:hover,
.gv_panelNavNext:hover {
    background-color: #fff;
         opacity: .9;

    -moz-opacity: .9;
    -khtml-opacity: .9;
    filter: alpha(opacity=90);
}

.gv_navPlay {
    width: 30px;
    height: 30px;
    background-color: #fff;
    background-image: url(themes/dark/play-big.png);
    background-repeat: no-repeat;
    background-position: left top;
    cursor: pointer;
}
.gv_navPause {
    width: 30px;
    height: 30px;
    background-color: #fff;
    background-image: url(themes/dark/pause-big.png);
    background-repeat: no-repeat;
    background-position: left top;
    cursor: pointer;
}
.gv_navNext {
    width: 20px;
    height: 20px;
    background-color: #fff;
    background-image: url(themes/dark/next.png);
    background-repeat: no-repeat;
    background-position: left top;
    cursor: pointer;
}
.gv_navPrev {
    width: 20px;
    height: 20px;
    background-color: #fff;
    background-image: url(themes/dark/prev.png);
    background-repeat: no-repeat;
    background-position: right top;
    cursor: pointer;
}
.gv_panelNavNext {
    width: 20px;
    height: 20px;
    background-color: #fff;
    background-image: url(themes/dark/panel-next.png);
    background-repeat: no-repeat;
    background-position: left top;
    cursor: pointer;
}
.gv_panelNavPrev {
    width: 20px;
    height: 20px;
    background-color: #fff;
    background-image: url(themes/dark/panel-prev.png);
    background-repeat: no-repeat;
    background-position: right top;
    cursor: pointer;
}
#main .box .ContTxtArea {
    margin-left: 20px;
}
