#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;
	border: solid 5px #dcdcdc;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0px 0px 10px #313131;
	-webkit-box-shadow: 0px 0px 10px #313131 ;
	box-shadow: 0px 0px 10px #313131 ;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #fff;
	background: #49a5b5 ;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background:#f3f6fc;
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background:f3f6fc;
}

#popup_message {
	padding-left: 0px;
	color:#464753;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_panel input{
	height:20px;
	margin:0 5px 0 0;
	line-height:20px;
	width:60px;
	padding:0;
	background:#103f44;
	color:#fff;
	text-align:center;
	font-size:12px;
	-moz-border-radius:5px ;
    -webkit-border-radius:5px ;
    border:none;
    cursor:pointer;
}
#popup_panel input:hover{
	background:#dcdcdc;
	color:#464753;
}
#popup_prompt {
	margin: .5em 0em;
}