#popup_container {
	font-family: Arial, sans-serif;
	font-size: 13px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	color: #4D4F53;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-o-box-shadow: 0 0 15px #888;
	-icab-box-shadow: 0 0 15px #888;
	-khtml-box-shadow: 0 0 15px #888;
	-webkit-box-shadow: 0 0 15px #888;
	-moz-box-shadow: 0 0 15px #888;
	box-shadow: 0 0 15px #888;
}

#popup_title {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #fff;
	background: #a1ae24;
	cursor: default;
	padding: 0em;
	margin: 0em;
	
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-radius: 5px 5px 0 0;
}

#popup_content {
	background: 16px 16px no-repeat url(/images/jquery-alerts/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(/images/jquery-alerts/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;
}
