/* BEGIN : SlickEdit Lightbox */

div.se-lightbox {
  /*visibility: hidden;*/
  display: none;
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  margin: 0 !important;
  padding: 0 !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url('/static/se-lightbox/caption-background-5x5.png');
  background-repeat: repeat;
  /* Make sure se-lightbox stays on top of menubar */
  z-index: 10999;
}
div.se-lightbox .content-box {
  position: relative;
  display: block;
  width: 90%;
  height: 90%;
  margin: 0 auto;
  padding: 0;
  padding-top: 32px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  text-align: center;
  vertical-align: middle;
}
div.se-lightbox .close-button {
  position: absolute;
  top: 16px;
  right: -16px;
  width: 32px;
  height: 32px;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-image: url('/static/se-lightbox/close-32.png') !important;
  cursor: pointer;
  cursor: hand;
  /* Make sure Close button stays on top of everything else inside se-lightbox,
   * so user has no trouble finding/clicking it.
   */
  z-index: 999;
}

/* END : SlickEdit Lightbox */
