@charset "utf-8";
/* CSS Document */
#alert{
	width:350px;
	height:200px;
	position:fixed;
	z-index:1000;
	top:50%;
	left:50%;
	margin-left:-175px;
	margin-top:-100px;
	border:1px solid #ccc;
	border-radius:10px;
	background:#FFF;
	box-shadow:3px 3px 7px #666;
	overflow:hidden;
	display:none;
	}
#alert_title{
	width:100%;
	height:30px;
	line-height:30px;
	background:#E46F71;
	text-align:center;
	font-size:14px;
	color:#FFF;
	}
#alert_mess{
	width:100%;
	height:170px;
	line-height:150px;
	text-align:center;
	box-shadow:inset 2px 2px 2px #999;
	color:#FF0000;
	}
#btn_alert_close{
	color:#FFF;
	position:absolute;
	margin-left:325px;
	margin-top:5px;
	z-index:1000;
	cursor:pointer;
	}
