@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 {
	min-height: 100%;
}