/*
    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%;
	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;
}
/* 
    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.
*/
#cboxOverlay { background:#090909; }
#colorbox { background-color:#fff }
#cboxContent {
	overflow:visible;
	border-top: 10px solid #FFF;
	border-right: 10px solid #FFF;
	border-bottom: 52px solid #FFF;
	border-left: 10px solid #FFF;
}
.cboxIframe { background:#fff; }
#cboxError {
	padding:50px;
	border:1px solid #ccc;
}
#cboxLoadedContent { background:#fff; /*padding:10px;*/
}
#cboxLoadingGraphic { background:url(/images/site/loading.gif) no-repeat center center; }
#cboxLoadingOverlay { background:#fff; }
#cboxTitle {
	position:absolute;
	left:10px;
	color:#000;
	bottom: -33px;
	text-align: center;
	right: 80px;
	line-height: 16px;
}
#cboxCurrent {
	position:absolute;
	top:-22px;
	right:205px;
	text-indent:-9999px;
	display:none
}
#cboxSlideshow,
#cboxPrevious,
#cboxNext {
	text-indent:-9999px;
	position:absolute;
}
#cboxPrevious,
#cboxNext {
	height: 100%;
	width: 50%;
	top: 0px;
}
#cboxPrevious { left: 0px; }
#cboxPrevious:hover { background: url(/images/site/arrow-prev.png) no-repeat 4% center; }
#cboxNext { right:0px; }
#cboxNext:hover { background: url(/images/site/arrow-next.png) no-repeat 96% center; }
#cboxClose {
	right:10px;
	background: url(/images/site/close.gif) no-repeat right center;
	bottom: -35px;
	padding-right: 20px;
	font-size: 12px;
	color: #575858;
	position:absolute
}
#cboxClose:hover { text-decoration: underline; }
.cboxSlideshow_on #cboxPrevious,
.cboxSlideshow_off #cboxPrevious { right:66px; }
.cboxSlideshow_on #cboxSlideshow {
	background-position:-75px -25px;
	right:44px;
}
.cboxSlideshow_on #cboxSlideshow:hover { background-position:-100px -25px; }
.cboxSlideshow_off #cboxSlideshow {
	background-position:-100px 0px;
	right:44px;
}
.cboxSlideshow_off #cboxSlideshow:hover { background-position:-75px -25px; }
