/* 페이지 레이아웃 */
body{background:#fff;}
.all_wrap{
	overflow:hidden;
	position:absolute;top:0px;bottom:0px;left:0px;right:0px;margin:auto;
}
.cpage{
	display:none;
	min-width:200px;width:100%;height:100%;
	clear:both;
	position:relative;
	overflow:visible;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
}
/* 페이지 */
.paging_ver{
	position:fixed;z-index:100;
	bottom:60px;
	width:100%;height:10px;
	text-align:center;
}
.paging_ver a{
	display:inline-block;
	height:10px;width:40px;
	margin-right:3px;
	background:#fff;
}
.paging_ver .sel{
	background-color:#329a9e;
}
/* 네모난 버튼 */
.btnM{
	display:inline-block;position:relative;z-index:1;
	width:100px;height:35px;line-height:30px;
	font-size:12px;color:#fff;
	/* border-top:1px solid #fff;
	border-bottom:1px solid #fff; */
	text-align:center;
	background-color:#329a9e;
}
.btnM:hover{
	color:#fff;
}
.btnM::before{
	content:"";
	position:absolute;z-index:-1;bottom:0; left:0;
	width:100%;height:0%;
	background-image:url(../images/rooms/back.png);
	transition:height 0.3s ease-out;
}
.btnM:hover::before{
	height:100%;
}

