/*
    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;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width: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;}

/* 
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/

/* Overlay */
#cboxOverlay {
	background: #000;
}
/* Content */
#cboxContent{
	background: transparent;
}
#cboxContent #addthis {
	position: absolute;
	bottom: 0;
	right: 0;
}
#cboxLoadedContent{
	background: #000;
	overflow: hidden !important;
}
/* Title */
#cboxTitle {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	padding: 13px 22px;
	width: 100%;
	font-size: 1.2em;
	line-height: 1.2em;
	color: #fff;
	background: url("../images/layout/caption-bg.png");	
}
#cboxTitle p {
	margin-bottom: 0;
	margin-right: 245px;
}
/* Close */
#cboxClose{
	position: absolute;
	top: -1px;
	right: -1px;
	display: block;
	width: 26px;
	height: 26px;
	background: url("../images/layout/lightbox-close.png") right bottom no-repeat;
}
#cboxClose:hover {
	background-color: #000;
}
/* Next / Previous / Play-Pause */
#cboxSlideshow,
#cboxNext,
#cboxPrevious {
	position: absolute;
	top: 50%;
	height: 25px;
	width: 21px;
	background-position: 0 0;
	background-repeat: no-repeat;
	&:hover {
		background-color: #000;
	}
}
#cboxPrevious:hover,
#cboxNext:hover {
	background-color: #000;
}
#cboxNext {
	right: -1px;
	background-image: url("../images/layout/lightbox-next.png");	
}
#cboxPrevious{
	right: 20px;
	background-image: url("../images/layout/lightbox-prev.png");		
}
/* Current */
#cboxCurrent {
	display: none !important;
}
/* Slideshow */
#cboxSlideshow {}