#popup_container {
	font-family: Arial, sans-serif;	
	font-size: 12px;
	min-width: 400px; /* Dialog will be no smaller than this */
	max-width: 500px; /* Dialog will wrap after this width */
	background: #FFF;
	min-height:160px;
	border:1px solid #d3d1cf;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	box-sizing: border-box;
}
#popup_title {
	display:none;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.75em;
	/*color: #666;*/
	color:#FFFFFF;
	/*background: #CCC url(images/title.gif) top repeat-x;*/
	background-color:#0074bc;
	
	/*background-color:#595959;*/
	/*background-color:#277707; */
	border: solid 1px #FFF;
	border-bottom: solid 1px #999;
	cursor: default;
	/*padding: 0em; */
	padding:6px 10px 4px 15px;
	margin: 0.3em 0.2em;
}
#popup_content {
	min-height:60px;
	background: 16px 16px no-repeat url(images/info.gif);
	/*padding: 1em 1.75em;*/
	padding:20px 12px 5px 12px;
	margin:1em  0em;
	font-size:1.30em;
}
#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:right; margin: 2.8em 0em 0em 1em; }
#popup_panel input{ border: none; color: white; padding: 5px 12px; text-align: center; text-decoration: none;  display: inline-block; font-size: 15px; cursor:pointer; background-color: #0074bc;  -webkit-transition: background .2s; transition: background .2s;touch-action: manipulation; }
#popup_panel #popup_ok{ background-color: #0074bc; }
#popup_panel #popup_cancel{ background-color:#900; }
#popup_panel input:hover, #popup_panel #popup_ok:hover, #popup_panel #popup_cancel:hover{ background-color:#39C; }
#popup_prompt { margin: .5em 0em;}