#popup_container {
   font-size: 12px;
   min-width: 300px; /* Dialog will be no smaller than this */
   max-width: 600px; /* Dialog will wrap after this width */
   background: #FFF;
   border: solid 1px #ddd;
   -moz-border-radius: 4px;
   -webkit-border-radius: 4px;
   border-radius: 4px;
}

#popup_title {
   background-color: #f5f5f5;
   border-bottom: 1px solid transparent;
   border-color: #ddd;
   border-top-left-radius: 3px;
   border-top-right-radius: 3px;
   color: #333;
   cursor: default;
   font-size: 14px;
	font-weight: bold;
   margin: 0em;
   padding: 10px 15px;
	text-align: center;
}

#popup_content {
	background: 16px 16px no-repeat url(images/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#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;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}