#popup_container {
	font-family: Arial, sans-serif;
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;	
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-left: 5px;
	margin-right: 5px;
    -moz-box-shadow:rgba(0,0,0,0.30) 2px 2px 5px;
    -webkit-box-shadow:rgba(0,0,0,0.30) 2px 2px 5px;
    box-shadow:rgba(0,0,0,0.30) 2px 2px 5px;	
}

#popup_title {
	height: 35px;	
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	line-height: 35px;
	color: #fff;
	background: #696969 15px 7px no-repeat url(images/alert.png);
	border: solid 1px #696969;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;	
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_title.alert_1 {
	background-image: url(images/info.gif);
}

#popup_title.confirm_1 {
	background-image: url(images/important.gif);
}

#popup_title.prompt_1 {
	background-image: url(images/help.gif);
}

#popup_content {
	padding: 1em 0.25em;
	margin: 0em;
}

#popup_message {
	text-align: center;
	overflow: auto;
	max-height: 400px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 0em;
}

#popup_prompt {
	margin: .5em 0em;
}

#popup_container input[type='button']{
	-moz-border-radius:4px;
	-moz-appearance: none;
	-webkit-border-radius:4px;
	-webkit-appearance: none;
	border-radius:4px;
	background:#4682b4;
	border:1px solid #4682b4;
	cursor: pointer;
	padding:5px 5px;	
	font-size: 15px;
	color:#fff;	
}	