#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: #F6F6F6;
	border: solid 1px #19478A;
	padding: 6px !important;
	color: #000;
	-webkit-box-shadow: 0px 10px 20px 0px rgba(68, 68, 68, 0.4);
	-moz-box-shadow:    0px 10px 20px 0px rgba(68, 68, 68, 0.4);
	box-shadow:         0px 10px 20px 0px rgba(68, 68, 68, 0.4);
}

#popup_title {
	font-size: 15px;
	font-weight: bold;
	text-transform: capitalize;
	text-align: left;
	line-height: 1.75em;
	color: #666;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background: 16px 16px no-repeat url(images/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
	color: #000;
    font-size: 14px;
    background-color: #FFF;
    border: 1px solid #ABABAB;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;

}

#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;
}