<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#popup_container {
	font-size: 11px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 1px #8090A1;
	color: #394C60;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 5px;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	/*color: #394C60;*/
	/*background-color:#baccda;*/
	color:#fff;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
	
	
	background:#000000;
	background:-o-linear-gradient(bottom, #646464 5%, #3f3f3f 100%);	
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #646464), color-stop(1, #3f3f3f) );	
	background:-moz-linear-gradient( center top, #646464 5%, #3f3f3f 100% );	
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#646464", endColorstr="#3f3f3f");	
	background: -o-linear-gradient(top,#646464,#3f3f3f);
}

#popup_content {
	background: 16px 16px no-repeat url(images/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(../images/info.gif);
}

#popup_content.confirm {
	background-image: url(../images/important.gif);
}

#popup_content.prompt {
	background-image: url(../images/help.gif);
}

#popup_message {
	padding-left: 48px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}

#popup_ok{
	border:0px;
	width:79px;
	height:26px;
	background:url(../images/ok-button.png) no-repeat;
	cursor:pointer;
}
#popup_ok:hover{
	background:url(../images/ok-button-hover.png) no-repeat;
}
#popup_cancel{
	border:0px;
	width:79px;
	height:26px;
	background:url(../images/cancel-button.png) no-repeat;
	cursor:pointer;
}
#popup_cancel:hover{
	background:url(../images/cancel-button-hover.png) no-repeat;
}</pre></body></html>