/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox {
	background-image: url("../img/opacity_bg.png");
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	overflow: hidden;
}

#cboxWrapper {
	background: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	overflow: hidden;
}

#cboxOverlay {
	background: none;
	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;
	padding: 5px;
}

#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.
*/
#cboxOverlay {
	background: #ebebeb;
}

#colorbox {
}

#cboxError {
	border: 1px solid #ccc;
	padding: 150px;
}

#cboxLoadedContent {
	padding: 25px; /*// 15px 14px;*/
	background: #ebebeb;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
	position: relative;
}

#cboxTitle {
	position: absolute;
	top: 8px;
	color: #000;
	background-color: #ebebeb;
	left: 30px;
}

#cboxCurrent {
	position: absolute;
	top: -15px;
	right: 25px;
	color: #000;
	display: none;
}

#cboxSlideshow {
	position: absolute;
	top: -20px;
	right: 90px;
	color: #ebebeb;
}

#cboxPrevious {
	position: absolute;
	top: 50%;
	left: 10px;
	margin-top: -32px;
	background: url(/design/colorbox/controls.png) no-repeat top left;
	border: none;
	width: 48px;
	height: 65px;
	text-indent: -9999px;
}

#cboxPrevious.hover {
	background-position: 0px -56px;
}

#cboxNext {
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -32px;
	background: url(/design/colorbox/controls.png) no-repeat top right;
	border: none;
	width: 48px;
	height: 65px;
	text-indent: -9999px;
}

#cboxNext.hover {
	background-position: 100% -56px;
}

#cboxLoadingOverlay {
	background: #ebebeb;
}

#cboxLoadingGraphic {
	background: url(/design/img/ajax-loader.gif) no-repeat center center;
	width: 66px;
	height: 66px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -33px 0 0 -33px;
	z-index: 1000;
}

#cboxClose {
	background: url(/design/colorbox/controls.png) no-repeat top center;
	border: none;
	display: block;
	height: 19px;
	position: absolute;
	right: 1px;
	text-indent: -9999px;
	top: 10px;
	width: 38px;	
}

#cboxClose.hover {
	background-position: bottom center;
}