/* gallery */
#galleryShell {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
}
  #galleryContent {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 1066px;
    margin-left: -533px;
    height: 90%;
    overflow: hidden;
  }
    .galleryItem {
      visibility: hidden;
    }
    #galleryHeader {
      position: absolute;
      left: 192px;
    }
    #galleryThumbs {
      position: absolute;
      height: 100%;
    }
      .galleryThumb {
        position: absolute;
        border: 1px solid #425356;
        visibility: hidden;
        cursor: pointer;
      }
      .galleryThumb img {
        position: absolute;
      }
      .galleryThumb #over {
        visibility: hidden;
      }
      .galleryThumb div {
        position: absolute;
        width: 5px;
        height: 5px;
      }
      .galleryThumb div.tl {
        left: -4px;
        top: -4px;
        border-top: 1px solid #fff;
        border-left: 1px solid #fff;
      }
      .galleryThumb div.tr {
        right: -4px;
        top: -4px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
      }
      .galleryThumb div.bl {
        left: -4px;
        bottom: -4px;
        border-bottom: 1px solid #fff;
        border-left: 1px solid #fff;
      }
      .galleryThumb div.br {
        right: -4px;
        bottom: -4px;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
      }

  #galleryOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    display: none;
    visibility: hidden;
    z-index: 1;
  }
    #galleryBg {
      position: absolute;
      left: 50%;
      width: 1600px;
      height: 800px;
      margin-left: -800px;
      overflow: hidden;
      -webkit-user-select: none;
    }
      #galleryBgShell,
      #galleryBgSlide {
        position: absolute;
        background: no-repeat center center;
        background-size: cover;
        width: 100%;
        height: 100%;
        visibility: hidden;
      }
      #galleryShare {
        position: absolute;
        right: 0;
        top: 68px;
        width: 86px;
        height: 40%;
        background-color: rgba(87,168,192,.5);
        visibility: hidden;
      }
        #galleryShareIcon {
          display: block;
          width: 86px;
          height: 68px;
          background: url(../img/gallery/share_icon.png) top left;
          background-color: rgba(0,0,0,.5);
        }
        #galleryShare a {
          display: block;
          width: 86px;
          height: 24px;
        }
        #galleryFb {
          background: url(../img/gallery/share_fb.png) top left;
        }
        #galleryTw {
          background: url(../img/gallery/share_tw.png) top left;
        }
        #galleryTb {
          background: url(../img/gallery/share_tb.png) top left;
        }
        #galleryPi {
          background: url(../img/gallery/share_pi.png) top left;
        }
        #galleryShare a:hover {
          background-position: bottom left;
        }
      #galleryClose {
        visibility: hidden;
      }
