@charset "UTF-8";
/* CSS Document */

#modal,#modal2{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}
#modal_content,#modal_content2{
    width:630px;
	height:588px;
    background:#fff;
    margin:15% auto;
    padding:10px;
    position:relative;
	border-radius:10px;
    animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}
}
.modalmapinfo{
	color:#222;
	font-size:16px;
	text-align:center;
}
.btn_close{
	clear:both;
	float:right;
	border-radius:6px;
	background-color:#003300;
	margin: 8px 16px;
	padding: 4px 16px;
	color:#FFF;
}