#css_tabs {
	font-family: 'nanumgothic', '나눔고딕', 'malgun gothic', '맑은 고딕', 'dotum', '돋움', sans-serif;
}
/* 탭 선택 시 표시할 요소(div) 정의(1번 탭 선택 시 첫 번째 div 요소 표시) */
#css_tabs input:nth-of-type(1),
#css_tabs input:nth-of-type(1) ~ div:nth-of-type(1),
#css_tabs input:nth-of-type(2),
#css_tabs input:nth-of-type(2) ~ div:nth-of-type(2),
#css_tabs input:nth-of-type(3),
#css_tabs input:nth-of-type(3) ~ div:nth-of-type(3),
#css_tabs input:nth-of-type(4),
#css_tabs input:nth-of-type(4) ~ div:nth-of-type(4) {
		display: none;
}
#css_tabs input:nth-of-type(1):checked ~ div:nth-of-type(1),
#css_tabs input:nth-of-type(2):checked ~ div:nth-of-type(2),
#css_tabs input:nth-of-type(3):checked ~ div:nth-of-type(3),
#css_tabs input:nth-of-type(4):checked ~ div:nth-of-type(4) {
		display: block;
}
/* 라벨 기본 스타일 지정 */
#css_tabs > label {
	display: inline-block;
	font-variant: small-caps;
	font-size: 0.9em;
	padding: 5px;
	text-align: center;
	width: 20%;
	line-height: 1.8em;
	font-weight: 700;
	border-radius: 3px 3px 0 0;
	background: #eee;
	color: #777;
	border: 1px solid #ccc;
	border-width: 1px 1px 0;
}
#css_tabs > label:hover {
	cursor: pointer;
}
#css_tabs label[for='tab1'] {
	margin-left: 1.5em;
}
/* 선택된 라벨, 커서를 올린 라벨 스타일 지정 */
#css_tabs input:nth-of-type(1):checked ~ label:nth-of-type(1),
#css_tabs > label[for='tab1']:hover {
	background: tomato;
	color: #fff;
}
#css_tabs input:nth-of-type(2):checked ~ label:nth-of-type(2),
#css_tabs > label[for='tab2']:hover {
	background: gold;
	color: #fff;
}
#css_tabs input:nth-of-type(3):checked ~ label:nth-of-type(3),
#css_tabs > label[for='tab3']:hover {
	background: green;
	color: #fff;
}
#css_tabs input:nth-of-type(4):checked ~ label:nth-of-type(4),
#css_tabs > label[for='tab4']:hover {
	background: green;
	color: #fff;
}
/* 실제 내용이 담긴 div 요소 스타일 지정 */
#css_tabs .tab1_content,
#css_tabs .tab2_content,
#css_tabs .tab3_content,
#css_tabs .tab4_content {
	padding: 2em;
	border: 1px solid #ddd;
	width: 100%;
	/* height: 1100px; */
}
.pie_table {
	text-align: right;
	font-size: 9px;
}
.pie_table2 {
	text-align: center;
	font-size: 9px;
	background-color: #eee;
}