@charset "utf-8";
/* CSS Document */
@font-face
			{
				font-family: Poppins-SemiBold;
				src: url("../font/Poppins-SemiBold.TTF");
			}
@font-face
		   {
				font-family: Poppins-Light;
				src: url("../font/Poppins-Light.TTF");
			}

@font-face
		   {
				font-family: Poppins-Medium;
				src: url("../font/Poppins-Medium.TTF");
			}

#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), 
#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),
#css_tabs input:nth-of-type(9), #css_tabs input:nth-of-type(9) ~ div:nth-of-type(9) {    
	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),
#css_tabs input:nth-of-type(9):checked ~ div:nth-of-type(9) {
    display:block
}
/* 라벨 기본 스타일 지정 */
#css_tabs > label {
    display:inline-block;
   /* font-variant:small-caps;
    font-size:.9em;*/
    text-align:center;
	font-family:Poppins-SemiBold;
	font-size:0.79em;
    padding:3px;
    width:8.5%;
    line-height:1.8em;
    font-weight:700;
    border-top-left-radius:8px;
    border-top-right-radius:8px;   
    background :#a24a02;  
    color:#fff; 
    border : 5px solid #f9f9f9;
    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:linear-gradient(to right top,#332e20, #453f2a, #575035, #696340, #7b764b);
    color:#fff
}
#css_tabs input:nth-of-type(2):checked ~ label:nth-of-type(2), #css_tabs > label[for=tab2]:hover {
    background:linear-gradient(to right top,#332e20, #453f2a, #575035, #696340, #7b764b);   
    color:#fff
}
#css_tabs input:nth-of-type(3):checked ~ label:nth-of-type(3), #css_tabs > label[for=tab3]:hover {
    background:linear-gradient(to right top,#332e20, #453f2a, #575035, #696340, #7b764b);   
    color:#fff
}
#css_tabs input:nth-of-type(4):checked ~ label:nth-of-type(4), #css_tabs > label[for=tab4]:hover {
    background:linear-gradient(to right top,#332e20, #453f2a, #575035, #696340, #7b764b);   
    color:#fff
}
#css_tabs input:nth-of-type(5):checked ~ label:nth-of-type(5), #css_tabs > label[for=tab5]:hover {
    background:linear-gradient(to right top,#332e20, #453f2a, #575035, #696340, #7b764b);   
    color:#fff
}
#css_tabs input:nth-of-type(6):checked ~ label:nth-of-type(6), #css_tabs > label[for=tab6]:hover {
    background:linear-gradient(to right top,#332e20, #453f2a, #575035, #696340, #7b764b);   
    color:#fff
}
#css_tabs input:nth-of-type(7):checked ~ label:nth-of-type(7), #css_tabs > label[for=tab7]:hover {
    background:linear-gradient(to right top,#332e20, #453f2a, #575035, #696340, #7b764b);   
    color:#fff
}
#css_tabs input:nth-of-type(8):checked ~ label:nth-of-type(8), #css_tabs > label[for=tab8]:hover {
    background:linear-gradient(to right top,#332e20, #453f2a, #575035, #696340, #7b764b);   
    color:#fff
}
#css_tabs input:nth-of-type(9):checked ~ label:nth-of-type(9), #css_tabs > label[for=tab9]:hover {
    background:linear-gradient(to right top,#332e20, #453f2a, #575035, #696340, #7b764b);   
    color:#fff
}

/* 실제 내용이 담긴 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, #css_tabs .tab9_content,{
    padding:2em;
    border:1px solid #ddd;
    width:800px;
    height:2800px;
    font-family:Poppins-Light;
	font-size:0.7em;
	font-weight:230;

}
