#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.0em;
     padding:7px 10px;
     text-align:center;
     width:18%;
     line-height:1.8em;
     font-weight:;
     border-radius: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:#333; border:1px #333 solid;
     color:#fff; 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:5% 2%; margin-top:-1px;
     border-top:1px solid #d8d8d8;
     width:95.5%;
     height:100%;
	 font-size:15px;
	 z-index:99;
 } 
 
 
#css_tabs .tab1_content ul, #css_tabs .tab2_content ul, #css_tabs .tab3_content ul, #css_tabs .tab4_content ul { margin-bottom:20px;}
#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 { font-size:1.0em; font-weight:600; color:#46505a; line-height:;}
#css_tabs .tab1_content ul li.tit2,
#css_tabs .tab2_content ul li.tit2,
#css_tabs .tab3_content ul li.tit2,
#css_tabs .tab4_content ul li.tit2  { font-size:1.0em; font-weight:500; color:#009a6b; line-height:; margin:5px 0;}
 
 
 
 
 
 
