/*
    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:hiddenX;
}
#cboxOverlay {
	position:fixed;
	width:100%;
	height:100%;
}
#cboxMiddleLeft, #cboxBottomLeft {
	clear:left;
}
#cboxContent {
	position:relative;
}
#cboxLoadedContent {
	overflow:auto;
}
#cboxTitle {
	margin:10px 0 0 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:#000;
}
#colorbox {
}
#cboxContent {
	margin-top:-60px;
}
#cboxError {
	padding:50px;
	border:1px solid #ccc;
}
#cboxLoadedContent {
	border:12px solid #fff;
	border-bottom:10px;
	background:#fff;
	-webkit-border-radius: 2px 2px 0px 0px;
	-moz-border-radius: 2px 2px 0px 0px;
	border-radius: 2px 2px 0px 0px;
}
#cboxTitle {
	position:relative;
	margin-top:-1px;
	left:0;
	color:#333;
	/*border-top:3px solid #fff;*/
	border-left:10px solid #fff;
	border-right:10px solid #fff;
	border-bottom:15px solid #fff;
	background:#fff;
	padding:5px 0px 0px 0px;
	min-height:35px;
	-webkit-border-radius: 0px 0px 2px 2px;
	-moz-border-radius: 0px 0px 2px 2px;
	border-radius: 0px 0px 2px 2px;
}
#cboxTitle p {
	margin:5px 60px 5px 3px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color: #383838;
}
#cboxCurrent {
	position:absolute;
	/*	top:10px;
	padding:0px 8px 5px 4px;*/
	left:22px;
	color:#fff;
	font-family: tahoma, Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size: 1em;
	background-color:#000000;
	bottom:10px;
	padding:5px 8px 5px 8px;
	letter-spacing:-1px;
	/*	-webkit-border-radius: 0px 0px 3px 0px;
	-moz-border-radius: 0px 0px 3px 0px;
	border-radius: 0px 0px 3px 0px;*/
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	filter:alpha(opacity=70);
	opacity:.7;
}
#cboxSlideshow {
	position:absolute;
	top:-20px;
	right:90px;
	color:#fff;
}
#cboxPrevious {
	position:absolute;
	top:0;
	left:-42px;
	margin-top:0px;
	width: 45px;
	/*text-indent:-9999px;*/
	height: 100%;
}
#cboxPrevious span {
	position:absolute;
	top:50%;
	left:0px;
	display:block;
	width:44px;
	height:65px;
	background:url(images/prev.png) no-repeat 0px 0px;
}
#cboxPrevious:hover span {
	background-position: 0px -65px;
}
#cboxNext {
	position:absolute;
	top:0;
	right:-42px;
	text-align:right;
	margin-top:0px;
	width: 45px;
	/*text-indent:-9999px;*/
	height: 100%;
	overflow:hidden;
}
#cboxNext span {
	position:absolute;
	top:50%;
	right:0px;
	display:block;
	width:44px;
	height:65px;
	/*	text-indent:-9999px;*/
	background:url(images/next.png) no-repeat 0px 0px;
}
#cboxNext:hover span {
	background-position: 0px -65px;
}
#cboxLoadingOverlay {
	background:#fff;
}
#cboxLoadingGraphic {
	background:url(images/loading.gif) no-repeat center center;
}
#cboxClose {
	position:absolute;
	bottom:-45px;
	right:15px;
	display:block;
	background:url(images/controls.png) no-repeat top center;
	width:40px;
	height:40px;
	text-indent:-9999px;
	z-index:10
}
#cboxClose.hover {
	background-position:bottom center;
}
