/**
 * SqueezeBox - Expandable Lightbox
 *
 * Allows to open various content as modal,
 * centered and animated box.
 *
 * @version    1.3
 *
 * @license    MIT-style license
 * @author    Harald Kirschner <mail [at] digitarald.de>
 * @author    Rouven Weßling <me [at] rouvenwessling.de>
 * @copyright  Author
 */

#sbox-overlay {
  background-color: transparent;
}

#sbox-window {
  background:rgba(255,255,255,0.8);
}

#sbox-window.shadow{
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

#sbox-window[aria-hidden=true],
#sbox-overlay[aria-hidden=true] {
  display: none;
}

#sbox-btn-close {
  background:url('../images/tmpl/closebox.png');
  position: absolute;
  width: 20px;
  height: 20px;
  right: 50px;
  top: 20px;
  border:none;
  z-index:5000;
}

.sbox-loading #sbox-content {
  background-color: none;
}

#sbox-content {
  background:none;
}

.sbox-content-image#sbox-content {

}

#sbox-image {

}

.sbox-content-image img {

}

.sbox-content-iframe#sbox-content {

}

/* Hides scrollbars */
.body-overlayed {

}

/* Hides flash (Firefox problem) and selects (IE) */
.body-overlayed embed, .body-overlayed object, .body-overlayed select {

}

#sbox-window embed, #sbox-window object, #sbox-window select {
;
}

/* Shadows */
#sbox-window.shadow {

}

.sbox-bg {
  position: absolute;
  width: 33px;
  height: 40px;
}

.sbox-bg-n {
  left: 0;
  top: -40px;
  width: 100%;
  background: url(../images/modal/bg_n.png) repeat-x;
}
.sbox-bg-ne {
  right: -33px;
  top: -40px;
  background: url(../images/modal/bg_ne.png) no-repeat;
}
.sbox-bg-e {
  right: -33px;
  top: 0;
  height: 100%;
  background: url(../images/modal/bg_e.png) repeat-y;
}
.sbox-bg-se {
  right: -33px;
  bottom: -40px;
  background: url(../images/modal/bg_se.png) no-repeat;
}
.sbox-bg-s {
  left: 0;
  bottom: -40px;
  width: 100%;
  background: url(../images/modal/bg_s.png) repeat-x;
}
.sbox-bg-sw {
  left: -33px;
  bottom: -40px;
  background: url(../images/modal/bg_sw.png) no-repeat;
}
.sbox-bg-w {
  left: -33px;
  top: 0;
  height: 100%;
  background: url(../images/modal/bg_w.png) repeat-y;
}
.sbox-bg-nw {
  left: -33px;
  top: -40px;
  background: url(../images/modal/bg_nw.png) no-repeat;
}
@-moz-document url-prefix() {
    .body-overlayed {
  overflow: visible;
    }
}

em {
  color: #575656 !important;
}

.nonMargin {
  margin-top: 0px !important;
}