#cboxOverlay {
	position: fixed;
	z-index: 1100000;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background: #000;
}
#colorbox {
	position: absolute;
	z-index: 1200000;
}
	#cboxTopLeft,
	#cboxTopCenter,
	#cboxTopRight,
	#cboxMiddleLeft,
	#cboxMiddleRight,
	#cboxBottomLeft,
	#cboxBottomCenter,
	#cboxBottomRight {
		display: none;
	}
	#cboxContent {
		position: relative;
		background: #fff;
		padding: 30px;
		border-radius: 15px;
	}
		#cboxTitle,
		#cboxCurrent,
		#cboxNext,
		#cboxPrevious,
		#cboxSlideshow,
		#cboxClose {
			position: absolute;
			z-index: 1000;
		}
		#cboxNext,
		#cboxPrevious,
		#cboxClose {
			width: 24px;
			height: 24px;
			overflow: hidden;
			cursor: pointer;
			border-radius: 12px;
		}
		#cboxClose {
			top: 5px;
			right: 5px;
		}
		#cboxClose:before {
			content: 'x';
			font-size: 13px;
			font-weight: bold;
			display: inline-block;
			line-height: 25px;
			width: 25px;
			margin: 0px 5px 0px 0px;
			text-align: center;
			font-family: Arial, Helvetica, sans-serif;
		}
		#cboxNext {
			bottom: 5px;
			right: 5px;
		}
		#cboxPrevious {
			bottom: 5px;
			left: 5px;
		}