@charset "utf-8";

/******************************  전체  ******************************/
#wrap, #aside, #container {
	position: absolute;
	height: 100%;
}

#wrap {
	width: 100%;
	/* background: #f6f6f6; */
}

#aside, #container {
	box-sizing: border-box;
}

#aside {
	width: 250px;
	background: #fff;
	box-shadow: 5px 0 15px rgba(0,0,0,0.02);
	/* overflow: auto; */
}

#container {
	left: 250px;
	width: calc(100% - 250px);
	padding: 0 30px;
	/* overflow: auto; */
}

.content_box {
	padding-bottom: 5px;
	min-height: 100%;
	border-right: 1px solid #f1f1f1;
}

/******************************  상단 (A 타입)  ******************************/
#header { display: none; height: 60px; border-bottom: 1px solid #ddd; background: #fff; }
#header .sitemap_btn { display: none; }

/******************************  로그인 정보  ******************************/
.login_info {
	width: calc(100% - 50px);
	margin: 35px auto 60px;
	padding: 20px 0;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #f6f6f6;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
}

.login_info p {
	margin: 10px 0;
}
