#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: #FFFFFF;
	border: solid 5px #CFCFCF;
	color: #333333;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	-moz-box-shadow: 0px 0px 10px #666;
	-webkit-box-shadow: 0px 0px 10px #666;
	-khtml-box-shadow: 0px 0px 10px #666;
	box-shadow: 0px 0px 10px #666;
	border-radius: 5px;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #831c7c;
	background: #EFEDEE url(../../images/icons/icons/title.gif) top repeat-x;
	border: solid 1px #FFF;
	border-bottom: solid 1px #CFCFCF;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background: 16px 16px no-repeat url(../images/icons/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(../images/icons/info.gif);
}

#popup_content.confirm {
	background-image: url(../images/icons/important.gif);
}

#popup_content.prompt {
	background-image: url(../images/icons/help.gif);
}

#popup_message {
	padding-left: 48px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}

#popup_ok {
	border:1px solid #4e4c43;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
}

#popup_cancel {
	border:1px solid #4e4c43;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
}

@media only screen and (max-width : 320px) {
	#popup_container {
		min-width: 200px; /* Dialog will be no smaller than this */
		max-width: 280px; /* Dialog will wrap after this width */
	}
}