html,body {
	height: 100%;
}


* html .layer_board_bg,
* html .layer_board {
	position: absolute;
}

.layer_board_bg {
	position: fixed;
	width: 100%;
	height: 100%;
	
	z-index: 1000;
	
	top: 0;
	left: 0;
	
	display: none;
	cursor: pointer;
	background: #000;
}

.layer_board {
	display: none;
	position: fixed;
/*
	left: 50%;
	margin: 50px 0px 0px -285px;
*/
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
	width: 90%;
	text-align: center;
	z-index: 2000;

}

.layer_board .panel {
	background-color: #fff;
	max-width: 400px;
	padding: 20px;
	margin: 0 auto 10px;
}

.layer_board .panel h2 {
	font-size: 16px;	
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 10px;
}

.layer_board .panel p {
	font-size: 13px;
	text-align: justify;
}

.layer_board .btn_close a {
	position: relative;
	color: #fff;
}

.layer_board .btn_close a::before {
  	font-family: "FontAwesome";
	content: "\f00d";
    position: absolute;
    top: -1px;
    left: -15px;
/*    right: 0;*/
    bottom: 0;
}
