/**
 * 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: hidden;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/**
 * These elements are buttons, and may need to have additional
 * styles reset to avoid unwanted base styles.
 */
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
  cursor: pointer;
}
/**
 * Avoid outlines on :active (mouseclick),
 * but preserve outlines on :focus (tabbed navigating)
 */
#cboxPrevious:active, #cboxNext:active, #cboxClose:active, #cboxSlideshow:active {
  outline: 0;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
/* Reset box sizing to content-box if theme is using border-box. */
#colorbox, #cboxContent, #cboxLoadedContent {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

#colorbox {
  outline: 0;
}
#colorbox, #colorbox div {
  overflow: visible; /* Required by the close button. */
}
    #cboxTopLeft {
      width: 0;
      height: 0;
    }
    #cboxTopCenter {
      height: 0;
    }
    #cboxTopRight {
      width: 0;
      height: 0;
    }
    #cboxBottomLeft {
      width: 15px;
      height: 10px;
    }
    #cboxBottomCenter {
      height: 10px;
    }
    #cboxBottomRight {
      width: 15px;
      height: 10px;
    }
    #cboxMiddleLeft {
      width: 0;
    }
    #cboxMiddleRight {
      width: 0;
    }
    #cboxContent {
      background: transparent;
      overflow: hidden;
      margin-bottom: 28px;
    }
      #cboxError {
        padding: 50px;
        border: 1px solid #ccc;
      }
      #cboxLoadedContent {
      }
      #cboxTitle {
        left: 0;
        color: white;
        padding: 10px 140px 0 0;
        display: table-cell !important;
        vertical-align: middle;
        float: none !important;
      }
      #cboxCurrent {
        position: absolute;
        bottom: -26px;
        right: 0;
        color: white;
        padding: 0 0 0 15px;
      }
      /* Slideshow not implemented. */
      .cboxSlideshow_on #cboxSlideshow {
        display: none;
      }
      .cboxSlideshow_on #cboxSlideshow:hover {
      }
      .cboxSlideshow_off #cboxSlideshow {
        display: none;
      }
      .cboxSlideshow_off #cboxSlideshow:hover {
      }

      #cboxLoadingOverlay {
	  }
      #cboxLoadingGraphic {
        background: url('../images/default.svg')  no-repeat center center;
      }



		#cboxPrevious {
			background: url('../images/sprites.png') -293px -62px no-repeat;
			position:fixed;
			bottom: auto;
			right: auto;
			top:50%;
			left:10px;
			width: 44px;
			height: 103px;
			margin-top: -51.5px; /* 1/2 the hight of the button */
			opacity: .6;
			text-indent: -9999px;
		}
			#cboxPrevious:hover {
				opacity: 1;
				background-position: -293px -62px;
			}
		
		#cboxNext {
			background: url('../images/sprites.png') -225px -62px no-repeat;
			position: fixed;
			bottom: auto;
			right: 10px;
			left: auto;
			top: 50%;
			width: 44px;
			height: 103px;
			margin-top: -51.5px; /* 1/2 the hight of the button */
			opacity: .6;
			text-indent: -9999px;
		}
			#cboxNext:hover {
				opacity: 1;
				background-position: -225px -62px;
			}
	
		#cboxClose {
			position: absolute;
			top: 0;
			right: -80px;
			background: url('../images/sprites.png') no-repeat -3px -3px;
			width: 60px;
			height: 60px;
			text-indent: -9999px;
			@include transition(none);
			z-index: 1000;
			opacity: .6 !important;
			text-indent: -9999px;
		}
			#cboxClose:hover {
				background-position: -3px -3px;
				opacity: 1 !important;
			}