<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";



header#header{
    box-sizing:border-box;
    margin: 0 auto;
    max-width:;
    height: ;
    background-color:#;
    text-align: center;
    padding:40px 0; /* 메뉴 위치 */
}
a#title{
    display: none;
    font-size:15px; 
}
div#wrap{
    position: relative;
}

div#slide_bg{
    display: none;
    position: fixed;
    top: 0;
    left: -50%;
    height:100%; 
    width: 50%;
    background-color: rgba(0,0,0,0.5); /* 모바일 배경 */
    z-index: 1;
}

div#slide_menu{ /* 모바일 메뉴 펼쳐짐*/
    display: none;
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    margin-left: +300px;
    height:100%; 
    padding-top: 60px;
    background-color: #fff;
    z-index: 1;
}
a#close_btn{ /* 모바일 닫기 버튼 */
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
}

ul.nav_main, ul.m_nav, ul.m_nav_sub{
    text-align: center;
    list-style: none;
    padding-left: 0;
}

ul.nav_main&gt;li{
    display: inline-block;
    font-size: 0;
    margin: -2.9px;
}

.nav_title a{ /* 메인메뉴 */
    display: inline-block; font-size:19px; font-weight:400; color:#fff; letter-spacing:0.5px;
    padding: 15px 0;
    width: 170px;
    transition: 0.3s;
    border-radius:10px 10px 0 0;
}
.nav_title a:hover{ /* 메인메뉴 오버 상태 지속은 js/nav_main.js 수정 */
    background-color: #14a9ff; color:#fff;
}

.nav_sub a{ /* 서브메뉴 */
    display: inline-block; font-size:15px; font-weight:400; color:#fff;
    padding: 2px 0;
    width: 170px;
    transition: 0.3s;
    border-radius:;
}
.nav_sub a:hover { color:#1d5da5; text-decoration:underline; }
 
ul.nav_sub{
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    background-color: #14a9ff;
    border-radius:0 0 10px 10px; padding-bottom:10px;
}

ul.m_nav_sub{
    display: none;
}

.m_nav_title a{
    display: inline-block;
    width: 100%;
    padding:10px 20px; font-size:16px; font-weight:500; text-align:left;
}
.m_nav_sub a{ font-size:13px; padding:5px 20px;
    background-color: #ededed;  text-align:left; /* 모바일 2차 서브메뉴 */
}

div#content{
    max-width: ;
    height: ;
    background-color: #;
}

div#burgerbtn{ /* 모바일 삼선메뉴*/
    display: none;
    position: absolute;
    top: 45px;
    right: 5%;
    width: 25px;
    height: 25px;
    cursor: pointer; color:#fff;
}


@media (min-width:768px) and (max-width:1299px){
	
	header#header{
    box-sizing:border-box;
    margin: 0 auto;
    max-width:;
    height: ;
    background-color:#;
    text-align: center;
    padding:20px 0; /* 메뉴 위치 */
}
	
	ul.nav_main&gt;li{
    display: inline-block;
    font-size: 0;
    margin: -2.9px;
}
	
	.nav_title a{ /* 메인메뉴 */
    display: inline-block; font-size:15px; font-weight:500; color:#fff;
    padding: 20px 0;
    width: 110px;
    transition: 0.3s;
    border-radius: ;
}
.nav_title a:hover{ /* 메인메뉴 오버 상태 지속은 js/nav_main.js 수정 */
    background-color: #14a9ff; color:#fff;
}

.nav_sub a{ /* 서브메뉴 */
    display: inline-block; font-size:13px; font-weight:400; color:#fff;
    padding: 2px 0;
    width: 110px;
    transition: 0.3s;
    border-radius: ;
}
.nav_sub a:hover { color:#afe3ff; text-decoration:underline; }
 
ul.nav_sub{
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    background-color: #14a9ff;
    border-radius: ;
}

ul.m_nav_sub{
    display: none;
}

.m_nav_title a{
    display: inline-block;
    width: 100%;
    padding: 13px; font-size:16px; font-weight:500;
}
.m_nav_sub a{ font-size:14px; padding:8px;
    background-color: #ededed; /* 모바일 2차 서브메뉴 */
}
}

@media screen and (max-width: 767px){
    ul.nav_main{
      display: none;  
    }
    a#title{
        display: none;
    }
   div#burgerbtn{ /* 모바일 삼선메뉴*/
    display: block;
    position: absolute;
    top:25px;
    right: 5%;
    width: 25px;
    height: 25px;
    cursor: pointer; color:#fff;
}
    div#slide_menu{
        display: block; z-index:8;
    }
    div#slide_bg{
        display: block;
    }
    
div#eng { /* */
    display: block; position: absolute;
    top:15px;left:10%; padding:3px 10px;
	border-radius:20px; background:#14a9ff; text-align:center; cursor: pointer;
}
div#eng a { font-weight:400; color:#fff; letter-spacing:0; }
  
    
}</pre></body></html>