#popup_container {
	font-family: 'lucida grande',tahoma,verdana,arial,sans-serif;
	font-size: 105%;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 6px #000;
	border-opacity:0.7;
	color: #000;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	box-shadow: 0 0 2px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 2px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 0 2px 0px rgba(0,0,0,0.5);
}
#popup_title {	
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #666;
	border-bottom: solid 1px #999;
	background: #CCC url(../images/title.gif) top repeat-x;	
	cursor: move;
    padding: 0em;
	margin: 0em;
    width:100%;
}
#popup_content {
	/*background: 16px 16px no-repeat url(../Images/alert/info.gif);*/
	padding: 1em 1.75em;
	margin: 0em;
}
#popup_content.alert {
	/*background-image: url(../Images/alert/info.gif);*/
}
#popup_content.confirm {
	background-image: url(../images/important.gif);
}
#popup_content.prompt {
	background-image: url(../images/help.gif);
}
#popup_message {
	padding-left: 30px;
}
#popup_panel {
	text-align: center;
	margin: 0 0 1em 1em;
}
#popup_prompt {
	margin: .5em 0em;
}

/* Error Styles */
#popup_container.style_error {
	color: red;
	background: #FEE3CB;
	border-color: red;
}
#popup_container.style_error #popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: red;
	border-bottom: solid 1px #999;
	background: #CCC url(../images/title.gif) top repeat-x;	
	cursor: move;
    padding: 0em;
	margin: 0em;
    width:100%;
}
#popup_container.style_error #popup_content {
	background-image: url(../Images/alert/warning.png);
}
#popup_container.style_error #popup_message {
	padding-left: 30px;
}
#popup_container.style_error INPUT[type='button'] {

}