#popup_container {
	font-family: Arial, sans-serif;
	font-size: 14px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 4px #393939;
	color: #000;
}

#popup_title {
	font-size: 17px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #ffc75a;
	background: #212121;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background: #000;
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
}

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

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

#popup_message {
	text-align: center;
	color: #FFF;
	padding: 20px 30px;
}

#popup_panel {
	text-align: center;
}

#popup_prompt {
	margin: .5em 0em;
}
#popup_ok {
	cursor: pointer;
	color: #000;
	font-size: 16px;
	line-height: 25px;
	padding: 0 20px;
	background: #FFC75A;
}