/* The item on which the lightbox is created */
.lightboxed {
  cursor: pointer;
}
/* Define lightbox top here */
#ip-lightbox {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  text-align: center;
}
/* Define background color for the lightbox */
#ip-lightbox .lightbox-wrapper {
  background-color: #FFFFFF;
  padding: 5px;
  display: inline-block;
}
#ip-lightbox.ie .lightbox-wrapper {
  display: block;
  position: absolute;
}
/* Don't change this, all set by jQuery */
#ip-lightbox-dimscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
}
/* Slide out beneath the lightbox */
#slideout-under {
  position: relative;
}
/* Default navigation elements */
#lightbox-navigation {
  height: 1.5em;
  color: #000000;
  width: 100%;
  position: relative;
}
#lightbox-navigation-next,
#lightbox-navigation-previous {
  position: absolute;
  top: 0;
}
#lightbox-navigation-previous {
  left: 0;
  text-align: left;
}
#lightbox-navigation-next {
  right: 0;
  text-align: right;
}
/* Slideshow navigation elements*/
#lightbox-navigation-slideshow {
  height: 2.5em;
  color: #000000;
  width: 100%;
  position: relative;
}
#lightbox-navigation-slideshow-forward,
#lightbox-navigation-slideshow-backward {
  position: absolute;
  top: 0;
}
#lightbox-navigation-slideshow-backward {
  left: 0;
  text-align: left;
}
#lightbox-navigation-slideshow-forward {
  right: 0;
  text-align: right;
}
/* Description elements */
#lightbox-description {
  text-align: left;
  font-weight: bold;
  color: #000000;
}
#lightbox-description .lightbox-description-inner {
  margin: 0;
}
/* Header elements */
#lightbox-header {
  height: 1.5em;
  text-align: left;
  position: relative;
}
#lightbox-header .close {
  top: 0.25em;
  font-weight: bold;
  text-decoration: none;
  /* Default */
  position: absolute;
  right: 5px;
}
