.alert_box_error, .alert_box_good 
{
	border-radius:10px;
	height:30px;
	line-height:30px;
	padding:0px 10px;
	font-size:12pt;
	font-weight:bold;
	opacity:1;
	text-indent:0px;
	opacity:1;
	display:none;
}
.alert_box_error
{
	color:red;
	background-color:rgba(255,255,255,0.5);
}
.alert_box_good
{
	color:lawngreen;
	background-color:rgba(0,0,0,0.5);
}
#popup_alert_mask
{
	background-image:url('../images/mask.png');
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:15;
	display:none;
	opacity:1;
}
#popup_alert_parent
{
	position:absolute;
	top:150px;
	left:50%;
	margin-left:-410px;
	width:820px;
	z-index:20;
	overflow:visible;
	text-align:center;
	display:none;
	opacity:1;
}
#popup_alert
{
	margin:0px auto;
	width:360px;
	height:auto;
	
	overflow:hidden;
	background-color:white;
	border:10px solid white;
	border-radius:10px;
}
#popup_alert .logo
{
	overflow:hidden;
	height:50px;
	text-align:center;
}
#popup_alert .logo img
{
	height:50px;
}
#popup_alert .msg
{
	overflow:hidden;
	text-align:center;
	font-size:16pt;
	margin:20px 0px;
	
}

#popup_alert .btn_area
{
	overflow:hidden;
	
}
#popup_alert .btn_area a,
#popup_alert .btn_area input
{
	display:inline-block;
	font-size:12pt;
	color:white;
	background-color:#E67A32;
	height:30px;
	line-height:30px;
	padding:0px 10px;
	text-align:center;
	border:0;
	margin:0px;
}
#popup_alert .btn_area a:hover,
#popup_alert .btn_area input:hover
{
	background-color:#30C7E2;
}








