<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@CHARSET "UTF-8";

/* the overlayed element */
.popupPanel { /* must be initially shown */
	display: block;
	/* place overlay on top of other elements */
	z-index: 10000;
	/* styling */
	background-color: #a1a1a1;
	width: 300px;
	min-height: 100px;
	border: 2px solid #333333;
	/* CSS3 styling for latest browsers */
	-moz-box-shadow: 0 0 30px 5px #000;
	-webkit-box-shadow: 0 0 30px #000;
}

/* close button positioned on upper right corner */
.popupPanel .close {
 	/* background-image: url(/icons/overlay/close.png); image doesn't exist */
	position: absolute;
	right: -15px;
	top: -15px;
	cursor: pointer;
	height: 35px;
	width: 35px;
}

/* styling for elements inside overlay */
.popupPanelContent {
	padding: 10px 0px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	width: 100%;
	text-align: center;
}
.popupPanelDeleteButtonDiv {
	padding: 0 30px 10px 0;
	float: right;
}

.popupPanelCancelButtonDiv {
	padding: 0 0 10px 30px;
	float:left;
}
.popupPanelCloseButtonDiv {
	text-align: center;
}
</pre></body></html>