@charset "utf-8";

#alert{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,0.75);
	z-index: 100;
}
#alert > .box{
	position: absolute;
	width: 1000px;
	height: 420px;
	top: 50%;
	left: 50%;
	margin-top: -210px;
	margin-left: -500px;
	background-color: #F8EBD6;
	z-index: 150;
}
#alert > .box > p.link{
	text-align: center;
}
#alert > .box > p.link > a{
	background-color: #0C7548;
	color: #FFF;
	padding: 15px 20px;
	font-size: 26px;
	-webkit-border-radius: 32px;
	-moz-border-radius: 32px;
	border-radius: 32px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
}
#alert > .box > p.link > a:first-child:hover{
	-webkit-box-shadow: 0 0 6px 3px #999;
	box-shadow: 0 0 6px 3px #999;
}
#alert > .box > p.link > a:last-child{
	background-color: transparent;
	color: #000;
}