#css_tabs {
     
 } 
 
 
 /* 탭 선택 시 표시할 요소(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),
 #css_tabs input:nth-of-type(5), #css_tabs input:nth-of-type(5) ~ div:nth-of-type(5),
 #css_tabs input:nth-of-type(6), #css_tabs input:nth-of-type(6) ~ div:nth-of-type(6),
 #css_tabs input:nth-of-type(7), #css_tabs input:nth-of-type(7) ~ div:nth-of-type(7),
 #css_tabs input:nth-of-type(8), #css_tabs input:nth-of-type(8) ~ div:nth-of-type(8) {
     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),
 #css_tabs input:nth-of-type(5):checked ~ div:nth-of-type(5),
 #css_tabs input:nth-of-type(6):checked ~ div:nth-of-type(6),
 #css_tabs input:nth-of-type(7):checked ~ div:nth-of-type(7),
 #css_tabs input:nth-of-type(8):checked ~ div:nth-of-type(8) {
     display:block
 }

 /* 라벨 기본 스타일 지정 */
 #css_tabs > label {
     display:inline-block;
     font-variant:small-caps;
     font-size:1.1em;
     padding:15px;
     text-align:center;
     width:15%;
     line-height:1.8em;
     font-weight:;
     border-radius:3px 3px 0 0;
     background:#f8f8f8;
     color:#5c5c5c;
     border:1px solid #d8d8d8;
    /* border-width:1px 1px 0; */
	 z-index:9999;
 }
 #css_tabs > label:hover {
     cursor:pointer
 }
 #css_tabs label[for=tab1] {
     margin-left:0
 }

 /* 선택된 라벨, 커서를 올린 라벨 스타일 지정 */
 #css_tabs input:nth-of-type(1):checked ~ label:nth-of-type(1), /* #css_tabs > label[for=tab1]:hover, */
 #css_tabs input:nth-of-type(2):checked ~ label:nth-of-type(2),
 #css_tabs input:nth-of-type(3):checked ~ label:nth-of-type(3),
 #css_tabs input:nth-of-type(4):checked ~ label:nth-of-type(4),
 #css_tabs input:nth-of-type(5):checked ~ label:nth-of-type(5),
 #css_tabs input:nth-of-type(6):checked ~ label:nth-of-type(6),
 #css_tabs input:nth-of-type(7):checked ~ label:nth-of-type(7),
 #css_tabs input:nth-of-type(8):checked ~ label:nth-of-type(8) {
     background:#fff; border-bottom:1px #fff solid;
     color:#0b1f91; font-weight:500;
 }


 /* 실제 내용이 담긴 div 요소 스타일 지정 */
 #css_tabs .tab1_content, 
 #css_tabs .tab2_content, 
 #css_tabs .tab3_content,
 #css_tabs .tab4_content,
 #css_tabs .tab5_content,
 #css_tabs .tab6_content,
 #css_tabs .tab7_content,
 #css_tabs .tab8_content {
     padding-top:40px; margin-top:-1px;
     border-top:1px solid #d8d8d8;
     width:;
     height:100%;
	 font-size:1.0em;
	 z-index:9;
 } 
 
 
#css_tabs .tab1_content ul, #css_tabs .tab2_content ul, #css_tabs .tab3_content ul, #css_tabs .tab4_content ul { border-bottom:1px dashed #d4d4d4; margin-bottom:30px; padding-bottom:35px; padding-left:30px;}

#css_tabs .tab1_content ul li.tit,
#css_tabs .tab2_content ul li.tit,
#css_tabs .tab3_content ul li.tit,
#css_tabs .tab4_content ul li.tit { display:block; margin-bottom:10px; list-style-type:none; margin-left:0; font-family: 'Pretendard-Bold'; font-size:2.0em; font-weight:600; color:#222; line-height:1.4em;}

#css_tabs .tab1_content ul li,
#css_tabs .tab2_content ul li,
#css_tabs .tab3_content ul li,
#css_tabs .tab4_content ul li { list-style-type:disc; list-style-position:outside; margin-left:25px; padding-left:0; line-height:1.6em; text-align:left;}
 
 
@media (max-width:767px){
	
/* 실제 내용이 담긴 div 요소 스타일 지정 */
 #css_tabs .tab1_content, 
 #css_tabs .tab2_content, 
 #css_tabs .tab3_content,
 #css_tabs .tab4_content {
     padding-top:20px; margin-top:-1px;
     border-top:1px solid #d8d8d8;
     width:;
     height:100%;
	 font-size:1.0em;
	 z-index:9;
 } 

 #css_tabs > label {
     display:inline-block;
     font-variant:small-caps;
     font-size:0.9em;
     padding:6px 8px;
     text-align:center;
     width:25%;
     line-height:1.8em;
     font-weight:;
     border-radius:3px 3px 0 0;
     background:#f8f8f8;
     color:#5c5c5c;
     border:1px solid #d8d8d8;
    /* border-width:1px 1px 0; */
	 z-index:9999;
 }	
	
#css_tabs .tab1_content ul, #css_tabs .tab2_content ul, #css_tabs .tab3_content ul, #css_tabs .tab4_content ul { border-bottom:1px dashed #d4d4d4; margin-bottom:20px; padding-bottom:25px; padding-left:10px;}

#css_tabs .tab1_content ul li.tit,
#css_tabs .tab2_content ul li.tit,
#css_tabs .tab3_content ul li.tit,
#css_tabs .tab4_content ul li.tit { display:block; margin-bottom:5px; list-style-type:none; margin-left:0; font-family: 'Pretendard-Bold'; font-size:1.4em; font-weight:600; color:#222; line-height:1.4em;}

#css_tabs .tab1_content ul li,
#css_tabs .tab2_content ul li,
#css_tabs .tab3_content ul li,
#css_tabs .tab4_content ul li { list-style-type:disc; list-style-position:outside; margin-left:15px; padding-left:0; line-height:1.6em; text-align:left;}
 
	 
}
 
 
