#popup_container {
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 5px #EEE;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	filter:alpha(opacity=90); /*IE*/
	-moz-opacity:0.90; /*FF*/
	opacity:0.90;
  box-shadow:0px 0px 10px;
}
#popup_content {
	padding: 1em 1.75em;
	margin: 0em;
	max-height:500px;
	overflow-y:auto;
  z-index: 99999;
}
#popup_title{
	padding-top: 1em;
	padding-left: 1em;
	padding-right: 1em;
}
#popup_content.alert {

}
#popup_content.confirm {

}
#popup_content.prompt {

}
#popup_panel {
	text-align: center;
}
#popup_prompt {
	margin: .5em 0em;
}
