/**
 *  Colorbox
 *
 *  This stylesheet contains rules for the colorbox jQuery lightbox plugin.
 *
 *  @package thameslink_colorbox
 */

#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;
	overflow: hidden;
}

#cboxLoadedContent {
	overflow: auto;
}

#cboxLoadedContent iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

#cboxTitle {
	margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
	cursor: pointer;
}

/* User defined rules */

#cboxOverlay {
	background: url(../img/colorbox/black-overlay.png) 0 0 repeat;
}

#cboxTopLeft,
#cboxTopRight,
#cboxBottomLeft,
#cboxBottomRight,
#cboxMiddleLeft,
#cboxMiddleRight,
#cboxTopCenter,
#cboxBottomCenter {
	display: none;
}

#cboxContent {
	background: url(../img/colorbox/colorbox-slice.png) top left repeat-x;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
}

#cboxLoadedContent {
	background: url(../img/colorbox/colorbox-slice.png) bottom left repeat-x;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	margin-top: 29px;
	padding-bottom: 29px;
}

#cboxTitle {
	color: #FFF;
	font-size: 1.4em;
	font-weight: bold;
	left: 5px;
	position: absolute;
	text-align: left;
	top: 5px;
	width: 100%;
}
	
#cboxCurrent {
	bottom: 10px;
	color: #FFF;
	font-size: 1em;
	font-weight: bold;
	position: absolute;
	text-align: center;
	width: 100%;
}

#cboxSlideshow {
	display: none;
}

#cboxPrevious {
	background: url(../img/colorbox/colorbox-prev.png) no-repeat;
	bottom: 0;
	height: 29px;
	position: absolute;
	right: 29px;
	text-indent: -9999px;
	width: 29px;
}

#cboxPrevious:hover {
	background-position: 0 -30px;
}

#cboxNext {
	background: url(../img/colorbox/colorbox-next.png) no-repeat;
	bottom: 0;
	height: 29px;
	position: absolute;
	right: 0;
	text-indent: -9999px;
	width: 29px;
}

#cboxNext:hover {
	background-position: 0 -30px;
}

#cboxLoadingOverlay {
	background: url(../img/colorbox/loading_background.png) center center no-repeat;
}

#cboxLoadingGraphic {
	background: url(../img/colorbox/loading.gif) center center no-repeat;
}

#cboxClose {
	background: url(../img/colorbox/colorbox-close.png) no-repeat;
	height: 29px;
	position: absolute;
	text-indent: -9999px;
	top: 0;
	right: 0;
	width: 29px;
}

#cboxClose:hover {
	background-position: 0 -30px;
}

/* IE6 PNG fixes */

.cboxIE #cboxTopLeft {background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../img/colorbox/internet_explorer/borderTopLeft.png, sizingMethod='scale');}
.cboxIE #cboxTopCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../img/colorbox/internet_explorer/borderTopCenter.png, sizingMethod='scale');}
.cboxIE #cboxTopRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../img/colorbox/internet_explorer/borderTopRight.png, sizingMethod='scale');}
.cboxIE #cboxBottomLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../img/colorbox/internet_explorer/borderBottomLeft.png, sizingMethod='scale');}
.cboxIE #cboxBottomCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../img/colorbox/internet_explorer/borderBottomCenter.png, sizingMethod='scale');}
.cboxIE #cboxBottomRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../img/colorbox/internet_explorer/borderBottomRight.png, sizingMethod='scale');}
.cboxIE #cboxMiddleLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../img/colorbox/internet_explorer/borderMiddleLeft.png, sizingMethod='scale');}
.cboxIE #cboxMiddleRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../img/colorbox/internet_explorer/borderMiddleRight.png, sizingMethod='scale');}
