#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 3px #23b7e5;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#popup_title {
	font-size: 14px;
	text-align: center;
	line-height: 2.2em;
	color: #fff;
	background: #23b7e5 url() top repeat-x;
	
	border-bottom: solid 1px #23b7e9;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background: 16px 16px no-repeat url();
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url();
}

#popup_content.confirm {
	background-image: url(images/important.gif);
}

#popup_content.prompt {
	background-image: url(images/help.gif);
}

#popup_message { padding:0px 20px; text-align:center; font-size:14px; color:#777;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 0em;
}

#popup_prompt {
	margin: .5em 0em;
}
#popup_ok{ border:none; width:80px; height:28px; line-height:25px; font-size:14px; color:#fff;
background-image: -moz-linear-gradient(top, #23b7e5, #23b7e9); /* Firefox */
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f88084), color-stop(1, #23b7e9)); /* Saf4+, Chrome */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88084', endColorstr='#23b7e9', GradientType='0'); /* IE*/
 border-radius:2px; cursor:pointer;
}
#popup_ok:hover{ background:#23b7e9}


#popup_cancel{ border:none; width:80px; height:28px; line-height:25px; font-size:14px; color:#666;
background-image: -moz-linear-gradient(top, #ededed, #dbdbdb); /* Firefox */
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ededed), color-stop(1, #dbdbdb)); /* Saf4+, Chrome */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dbdbdb', GradientType='0'); /* IE*/
 border-radius:2px; cursor:pointer;
}
#popup_cancel:hover{ background:#ccc; color:#fff}

/* IE9+ */
#popup_ok{ border:none; width:80px; height:28px; line-height:25px; font-size:14px; color:#fff;
background:#23b7e5;
 border-radius:2px; cursor:pointer;
}
#popup_ok:hover{ background:#23b7e9}