#popup_container {
	font-family: 'lucida grande',tahoma,verdana,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;
	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/alert/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/alert/important.gif);
}
#popup_content.prompt {
	background-image: url(../Images/alert/help.gif);
}
#popup_message {
	padding-left: 48px;
}
#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}
#popup_prompt {
	margin: .5em 0em;
}