/**
 * ColorBox Core Style:
 * The following CSS is consistent between example themes and should not be altered.
 */
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: visible !important;
  outline: 0;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
#colorbox, #cboxContent, #cboxLoadedContent {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Colorbox module default style:
 * The styles are ordered & tabbed in a way that represents
 * the nesting of the generated HTML.
 */
#cboxOverlay {
  background: #000;
}

#colorBox {}
  #cboxWrapper {
    background: none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
  }
    #cboxTopLeft {
      width: 15px;
      height: 15px;
    }
    #cboxTopCenter {
      height: 15px;
    }
    #cboxTopRight {
      width: 15px;
      height: 15px;
    }
    #cboxBottomLeft {
      width: 15px;
      height: 10px;
    }
    #cboxBottomCenter {
      height: 10px;
    }
    #cboxBottomRight {
      width: 15px;
      height: 10px;
    }
    #cboxMiddleLeft {
      width: 15px;
    }
    #cboxMiddleRight {
      width: 15px;
    }
    #cboxContent {
      background: transparent;
      overflow: visible;
      font: 12px "Lucida Grande", Verdana, Arial, sans-serif;
    }
      #cboxError {
        padding: 50px;
        border: 1px solid #ccc;
      }
      #cboxLoadedContent {
        margin-bottom: 38px;
      }
      #cboxTitle {
        position: absolute;
        background: none;
        bottom: 16px;
        left: 0;
        color: #535353;
        width: 100%;
        padding: 4px;
      }
      #cboxCurrent {
        display: none !important;
      }
      #cboxPrevious {
        position: absolute;
        bottom: 0;
        left: 0;
        background: url() 0 no-repeat;
        height: 27px;
        width: 16px;
        text-indent: -9999px;
        margin: 1em;
        outline: 0;
      }
      #cboxPrevious:hover {
        background-position: 0;
        background-color: transparent;
        outline: 0;
      }
      #cboxNext {
        position: absolute;
        bottom: 0;
        left: 599px;
        background: url() 0 no-repeat;
        height: 27px;
        width: 16px;
        text-indent: -9999px;
        margin: 1em;
        outline: 0;
      }
      #cboxNext:hover {
        background-position: 0;
        background-color: transparent;
        outline: 0;
      }
      #cboxLoadingOverlay {
        background: #fff;
      }
      #cboxLoadingGraphic {
        background: url(images/loading_animation.gif) center center no-repeat;
      }
      #cboxClose {
        background-color: transparent !important;
        position: absolute;
        bottom: 0;
        right: -30px;
        background: url(images/close.png) 0 0 no-repeat;
        width: 34px;
        height: 34px;
        text-indent: -9999px;
        top: -50px;
        outline: 0;
      }
      #cboxClose:hover {
        background-position: 0;
        background-color: transparent !important;
        outline: 0;
      }

/* The following are fixes for IE. */
.cboxIE6 #cboxTitle {
  background: #fff;
}
