.popup_container {
	font-family: Arial, sans-serif;
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
    border: 8px solid #4C4C4C;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	_width: 330px;
}

.popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #666;
	background: #CCC;
	border: solid 1px #FFF;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
	display: none;
}

.popup_content {
	background: 16px 16px no-repeat;
	padding: 20px 0;
	margin: 0em;
}

.popup_message {
	font-size: 15px;
	margin-bottom: 20px;
	text-align: center;
}

.popup_panel {
	text-align: center;
}

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

.popup_btn {
    border: none;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    min-width: 80px;
    margin: 0 4px;
    padding: 5px 12px;
	_width: 80px;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.popup_ok {
    background: #2DCC70;
}

.popup_ok:hover {
    background: #58D68D;
}

.popup_cancel {
    background: #E84C3D;
}

.popup_cancel:hover {
    background: #EC7064;
}