#popup_container {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #fff;
	border: solid 2px #FF9900;
	color: #333;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#popup_title {
	font-size: 10pt;
	font-weight: bold;
	line-height: 1.75em;
	color: #fff;
/*	background: #CCC url(images/title.gif) top repeat-x;*/
	background-image: url(images/alert-bg.png);
	background-repeat: repeat-x;
	border: 0;
	cursor: default;
	padding: 0 0 0 6px;
	margin: 10px 0 0;
}

#popup_content {
/*	background: 16px 16px no-repeat url(images/info.gif);*/
	padding: 1em 1.75em;
	margin: 0em;
	text-align:left;
}

#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;*/
	text-align: center;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}
#popup_panel button.cancelButtonClass
{
	margin: 0;
	padding: 0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #0079c2;
    border: 0;
	background-color: #fff;
	border-bottom: solid 1px #0079c2;
	cursor: pointer;
}
#popup_prompt {
	margin: .5em 0em;
}

/* Custom dialog styles */
#popup_container.style_1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	min-width: 500px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #fff;
	border: solid 2px #FF9900;
	color: #333;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#popup_container.style_1 #popup_title{
	font-size: 10pt;
	font-weight: bold;
	line-height: 1.75em;
	color: #fff;
	background-image: url(images/alert-bg.png);
	background-repeat: repeat-x;
	border: 0;
	cursor: default;
	padding: 0 0 0 6px;
	margin: 10px 0 0;
}

#popup_container.style_1 #popup_content {
	padding: 1em 1.75em;
	margin: 0em;
	min-height:100px;
	max-height:300px;
	overflow-y:scroll;
	text-align:left;
}

#popup_container.style_1 #popup_message {
	text-align: left;
}