.m-map {
	display: block;
	width: 70%;
	
	background: #000;
	cursor: pointer;
}
#m-mapBox {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
}
#m-mapBox.show {
	display: block;
}
#m-mapBox .m-mask {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}
#m-mapBox .m-mapBox {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 10px;
	width: 70%;
	height: 70%;
	background: #fff;
}
#m-mapBox .m-mapBox > #m-map {
	width: 100%;
	height: 100%;
}
#m-mapBox .m-mapBox > .m-closeBtn {
	position: absolute;
	top: -12px;
	right: -12px;
	width: 25px;
	height: 25px;
	background: url(./images/close.png) no-repeat 0 0 transparent;
	cursor: pointer;
}
#m-mapBox .m-mapBox > .m-closeBtn:hover {
	background: url(./images/close.png) no-repeat 0 -25px transparent;
}
