#cfOverlay,
#cfOverlayBusy {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	background-image: url('../images/cfLightbox.png');
	display: none;
}

#cfOverlayDialog {
	display: none;
	background-color: #fff;
	top: 50%;
	left: 50%;
	position: absolute;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-background-clip: padding-box;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-webkit-box-shadow: 0 2px 25px #000;
	-moz-box-shadow: 0 2px 25px #000;
	box-shadow: 0 2px 25px #000;
	max-width: 950px;
	padding: 10px;
}

#cfOverlayDialogInside {
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}

#cfOverlayCaption {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: .5em;
	padding: 0 10px;
}

#cfOverlayContent {
	padding: 10px;
}

#cfDialogClose {
	position: absolute;
	right: -12px;
	top: -12px;
	width: 24px;
	height: 24px;
	background-image: url('../images/close.png');
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-color: #000;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	-moz-background-clip: padding-box;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-webkit-box-shadow: 0 0 15px #000;
	-moz-box-shadow: 0 0 15px #000;
	box-shadow: 0 0 15px #000;
	cursor: pointer;
	border: 2px solid #fff;
}

#cfOverlayBusyCtnt {
	background-image: url(../images/busy.gif);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 128px;
	height: 15px;
	margin-left: -64px;
	margin-top: -8px;
}

