@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Nanum+Gothic:400,700,800&display=swap);
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR|Noto+Sans+SC:wght@100;200:300;400;500;700;900&&subset=chinese-simplified,japanese,korean');
/* 공용 */
body {
    font-family: 'Noto Sans KR', 'Noto Sans SC', 'source-han-sans-korean', sans-serif;
    font-size: 16px;
    font-weight: 200;
    word-break:keep-all;
}


.text_over_t{
     overflow-wrap: break-word !important; /* 단어 단위로 줄 바꿈 */
     word-wrap: break-word !important; /* IE와 호환성을 위해 추가 */
     word-break:keep-all;
}
.dis_flex { display:flex; justify-content:space-between;  }
.fl_fx { flex-grow:0; flex-shrink:0; }
.fl_grow { flex-grow:1; flex-basis:0; word-break:keep-all;}
.fl_warp {flex-wrap: wrap; justify-content: start;}
.fl_warp1 {flex-wrap: wrap; justify-content: center; }
.fl_center {display:flex; justify-content:center; flex-direction:column;}
.po_re {position:relative}
.po_top10 {top:-10px;}
/*==============================================
 Pre Loader
 ===============================================*/
#tb-preloader {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: #fff;
}

.tb-preloader-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
}

.tb-preloader-wave:before {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 60px;
    content: "";
    -webkit-animation: preloader-wave 1.6s linear infinite;
    animation: preloader-wave 1.6s linear infinite;
    border-radius: 50%;
    background: #df772e;
}

.tb-preloader-wave:after {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 60px;
    content: "";
    -webkit-animation: preloader-wave 1.6s linear infinite;
    animation: preloader-wave 1.6s linear infinite;
    border-radius: 50%;
    background: #2b5ea6;
}

.tb-preloader-wave:after {
    -webkit-animation-delay: -.8s;
    animation-delay: -.8s;
}

@-webkit-keyframes preloader-wave {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: .5;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes preloader-wave {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: .5;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

.form-control {
    border: solid 1px #d4dce0;
    padding: 0 20px;
    border-radius: 5px;
    background: #fff;
    box-shadow: none;
    color: #333;
}

.form-control:hover {
    border: solid 1px #00baff;
}

.form-control:focus {
    border: solid 1px #333333;
    background: #dce0e8;
    box-shadow: none;
    color: #333;
}

.form-control:disabled {
    border: solid 1px #d4dce0;
    background: #dddddd;
    box-shadow: none;
}

.form-control::placeholder {
    color: #999;
}

.form-control1 {
    border: solid 1px #d4dce0;
    padding: 0 30px;
    border-radius: 30px;
    background: #fff;
    box-shadow: none;
    color: #333;
    width: 100%;
}

.form-control1:hover {
    border: solid 1px #00baff;
}

.form-control1:focus {
    border: solid 1px #333333;
    background: #dce0e8;
    box-shadow: none;
    color: #333;
}

.form-control1:disabled {
    border: solid 1px #d4dce0;
    background: #dddddd;
    box-shadow: none;
}

.form-control1::placeholder {
    color: #999;
}

input {
    outline: none;
}

/* checkbox style */
.ck_type1 input[type=checkbox] {
    display: none;
}

.ck_type1 input[type=checkbox]+label {
    background: url('/views/_layout/bootstrap/images/common/ck_n.png') no-repeat;
    width: 20px;
    height: 20px;
    background-size: 20px;
}

.ck_type1 input[type=checkbox]:checked+label {
    background: url('/views/_layout/bootstrap/images/common/ck_h.png') no-repeat;
    width: 20px;
    height: 20px;
    background-size: 20px;
}

.ck_type1 input[type=checkbox]+label+label {
    display: inline;
    position: relative;
    top: -1px;
}

.ck_type1 input[type=checkbox]:checked+label+label {
    display: inline;
}

/* radio style */
.radio_style1 input[type=radio] {
    display: none;
}

.radio_style1 label {
    color: #111;
    cursor: pointer;
}

.radio_style1 input[type=radio]+label {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: url('/views/_layout/bootstrap/images/common/ra_n.png') no-repeat 0 0;
    background-size: 20px;
}

.radio_style1 input[type=radio]:checked+label {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: url('/views/_layout/bootstrap/images/common/ra_h.png') no-repeat 0 0;
    background-size: 20px;
}

.radio_style1 input[type=radio]:disabled+label {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: #e9e9e9;
}

.radio_style1 input[type=radio]+label+label {
    display: inline;
    position: relative;
    top: -1px;
}

.radio_style1 input[type=radio]:checked+label+label {
    display: inline;
}

.radio_style1 input[type=radio]:disabled+label+label {
    display: inline;
}

.ft1 {
    font-family: 'Poppins', sans-serif;
}

.ft2 {
    font-family: 'Noto Sans KR', 'Noto Sans SC', 'source-han-sans-korean', sans-serif;
    font-weight: 300;
}

.ft3 {
    font-family: 'Noto Sans KR', 'Noto Sans SC', 'source-han-sans-korean', sans-serif;
}

/* padding margin class*/
.font-a {
    font-family: 'Noto Sans KR', 'Noto Sans SC', 'source-han-sans-korean', sans-serif;
    font-weight: 300;
}

.line_h0 {
    line-height: 100%;
}

.line_h {
    line-height: 120%;
}

.line_h1 {
    line-height: 150%;
}

.line_h2 {
    line-height: 180%;
}

.line_h3 {
    line-height: 200%;
}

.f_web {
    font-weight: 600;
}

.f_wem {
    font-weight: 300;
}

.text_sh {
    text-shadow: 0px 0px 5px #333;
}

.box_sh {
    box-shadow: 0px 0px 5px #999;
}

.dis_box {
    display: inline-block;
}

.po_r {
    position: relative;
}

label {
    color: #111;
    font-weight: 100;
    font-size: 13px;
}

.form-group label {
    color: #111;
    font-weight: 400;
    font-size: 13px;
}

table label {
    color: #111;
    font-weight: 400;
    font-size: 13px;
}

.pz {
    padding: 0;
}

.mz {
    margin: 0;
}

.mar_cen {
    margin: auto;
}

ul, li {
    list-style: none;
    text-decoration: none;
    padding: 0;
    border: 0;
}

.over_h {
    overflow: hidden;
}

.over_a {
     overflow: auto;
 }

.cp {
    cursor: pointer;
}

.dis_n {
    display: none;
}

.dis_b {
    display: block;
}

.cl_b {
    clear: both;
}

.fl_r {
    float: right;
}

.f_gap8 {gap:8px;}
.f_gap80 {gap:80px;}

.fl_l {
    float: left;
}

.text_j {
    text-align: justify;
}

.text_del {
    text-decoration: line-through;
}

.text_line {
    text-decoration: underline;
}

.text_g {
    font-style: oblique;
}

a:link {
    text-decoration: none;
    color: #111;
}

a:hover {
    text-decoration: none;
    color: #111;
}

a:visited {
    color: #111;
}


.reporting_bt:link {
    text-decoration: none;
    color: #fff;
    background: #014e94;
    padding: 2px 10px;
    font-weight: 600;
}

.reporting_bt:hover {
    text-decoration: none;
    color: #fff;
    background: #014e94;
    padding: 2px 10px;
    font-weight: 600;
}

.reporting_bt:visited {
    color: #fff;
    background: #014e94;
    padding: 2px 10px;
    font-weight: 600;
}
.counsel_bt:link {
    text-decoration: none;
    color: #111;
    background: #f1f1f1;
    padding: 2px 10px;
    font-weight: 600;
}

.counsel_bt:hover {
    text-decoration: none;
    color: #111;
    background: #f1f1f1;
    padding: 2px 10px;
    font-weight: 600;
}

.counsel_bt:visited {
    color: #111;
    background: #f1f1f1;
    padding: 2px 10px;
    font-weight: 600;
}


.counsel_bt2{
    border:none;
    color: #111;
    background: #f1f1f1;
    padding: 2px 10px;
    font-weight: 600;
    width:100px;
}

.reporting_bt2 {
    border:none;
    color: #fff;
    background: #014e94;
    padding: 2px 10px;
    margin-top:2px;
    font-weight: 600;
    width:100px;
}


.counsel_bt3{
    border:none;
    color: #111;
    background: #f1f1f1;
    padding: 2px 10px;
    font-weight: 600;
}

.reporting_bt3 {
    border:none;
    color: #fff;
    background: #014e94;
    padding: 2px 10px;
    margin-top:2px;
    font-weight: 600;
}



/* gnb 메뉴 */

.button_gnb {
    width: 102px;
    height: 30px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    margin-top:30px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.button_gnb a {
    font-family: 'Noto Sans KR', 'Noto Sans SC', 'source-han-sans-korean', sans-serif;
    font-size: 15px;
    text-decoration: none;
    line-height: 30px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
}

.eff_gnb {
    width: 102px;
    height: 30px;
    left: -102px;
    background: #014e94;
    position: absolute;
    transition: all .5s ease;
    z-index: 1;
}

.eff_gnb_fix {
    width: 102px;
    height: 30px;
    background: #014e94;
    color: #fff;
    position: absolute;
    z-index: 1;
    left: 0;
}


.button_gnb_02 {
    width: 150px;
    height: 30px;
    float: left;
    text-align: center;
    cursor: pointer;
    margin-top:30px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.button_gnb_02 a {
    font-family: 'Noto Sans KR', 'Noto Sans SC', 'source-han-sans-korean', sans-serif;
    font-size: 15px;
    text-decoration: none;
    line-height: 30px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
}

.eff_gnb_02 {
    width: 150px;
    height: 30px;
    left: -150px;
    background: #014e94;
    position: absolute;
    transition: all .5s ease;
    z-index: 1;
}

.eff_gnb_fix_02 {
    width: 150px;
    height: 30px;
    background: #014e94;
    color: #fff;
    position: absolute;
    z-index: 1;
    left: 0;
}

.button_gnb_02:hover .eff_gnb {
    color: #fff;
    left: 0;
}

.button_gnb_02:hover a {
    color: #fff;
    font-weight: 600;
    left: 0;
}




.button_gnb_3 {
     width: 102px;
     height: 60px;
     padding-top:10px;
     display: inline-block;
     text-align: center;
     cursor: pointer;
     position: relative;
     box-sizing: border-box;
     overflow: hidden;
 }
 
 .button_gnb_3 a {
     font-family: 'Noto Sans KR', 'Noto Sans SC', 'source-han-sans-korean', sans-serif;
     font-size: 15px;
     text-decoration: none;
     line-height: 24px;
     transition: all .5s ease;
     z-index: 2;
     position: relative;
 }
 
 .eff_gnb_3 {
     width: 102px;
     height: 60px;
     left: -102px;
     background: #014e94;
     position: absolute;
     transition: all .5s ease;
     z-index: 1;
 }
 
 .eff_gnb_fix_3 {
     width: 102px;
     height: 60px;
     background: #014e94;
     color: #fff;
     position: absolute;
     z-index: 1;
     left: 0;
 }



.smenu:link {
    text-decoration: none;
    color: #666;
}

.smenu:hover {
    text-decoration: none;
    color: #111;
}

.smenu:visited {
    color: #666;
}

.footer:link {
    text-decoration: none;
    color: #ccc;
}

.footer:hover {
    text-decoration: none;
    color: #ccc;
}

.footer:visited {
    color: #ccc;
}

/* 히스토리 버튼 */
.button_history {
    width: 200px;
    height: 50px;
    float: right;
    text-align: right;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    padding-right: 20px;
}

.button_history a {
    font-family: 'Noto Sans KR', 'Noto Sans SC', 'source-han-sans-korean', sans-serif;
    font-size: 22px;
    text-decoration: none;
    line-height: 50px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
}

.eff_history {
    width: 200px;
    height: 50px;
    left: -200px;
    background: #014e94;
    position: absolute;
    transition: all .5s ease;
    z-index: 1;
}

.eff_history_fix {
    width: 200px;
    height: 50px;
    background: #014e94;
    color: #fff;
    position: absolute;
    z-index: 1;
    left: 0;
}

.button_history:hover .eff_history {
    color: #fff;
    left: 0;
}

.button_history:hover a {
    color: #fff;
    font-weight: 800;
    left: 0;
}

.text_de {
    text-shadow: 1px 1px 1px gray;
}

/* margin */
.m10p {
    margin-top: 10%;
}

.m10 {
    margin: 10px;
}

.m15 {
    margin: 15px;
}

.m20 {
    margin: 20px;
}

.mtm2 {
    margin-top: -2px;
}

.mtm3 {
    margin-top: -3px;
}

.mtm4 {
    margin-top: -4px;
}

.mtm5 {
    margin-top: -5px;
}

.mtm8 {
    margin-top: -8px;
}

.mtm12 {
    margin-top: -12px;
}

.mtm15 {
    margin-top: -15px;
}

.mt1 {
    margin-top: 1px;
}

.mt2 {
    margin-top: 2px;
}

.mt3 {
    margin-top: 3px;
}

.mt4 {
    margin-top: 4px;
}

.mt5 {
    margin-top: 5px;
}

.mt6 {
    margin-top: 6px;
}

.mt7 {
    margin-top: 7px;
}

.mt10 {
    margin-top: 10px;
}

.mt12 {
    margin-top: 12px;
}

.mt13 {
    margin-top: 13px;
}

.mt15 {
    margin-top: 15px;
}

.mt17 {
    margin-top: 17px;
}

.mt20 {
    margin-top: 20px;
}

.mt25 {
    margin-top: 25px;
}

.mt30 {
    margin-top: 30px;
}

.mt35 {
    margin-top: 35px;
}

.mt40 {
    margin-top: 40px;
}

.mt45 {
    margin-top: 45px;
}

.mt50 {
    margin-top: 50px;
}

.mt55 {
    margin-top: 55px;
}

.mt60 {
    margin-top: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mt75 {
    margin-top: 75px;
}

.mt80 {
    margin-top: 80px;
}

.mt85 {
    margin-top: 85px;
}

.mt90 {
    margin-top: 90px;
}

.mt95 {
    margin-top: 95px;
}

.mt100 {
    margin-top: 100px;
}

.mt110 {
    margin-top: 110px;
}

.mt120 {
    margin-top: 120px;
}

.mt140 {
    margin-top: 140px;
}

.mt160 {
    margin-top: 160px;
}

.mt170 {
    margin-top: 170px;
}

.mt180 {
    margin-top: 180px;
}

.mt190 {
    margin-top: 190px;
}

.mt200 {
    margin-top: 200px;
}

.mt220 {
    margin-top: 220px;
}

.mt230 {
    margin-top: 230px;
}

.mt250 {
    margin-top: 250px;
}

.mt260 {
    margin-top: 260px;
}

.mt270 {
    margin-top: 270px;
}

.mt280 {
    margin-top: 280px;
}

.mt290 {
    margin-top: 290px;
}

.mt300 {
    margin-top: 300px;
}

.mt350 {
    margin-top: 350px;
}

.mt400 {
    margin-top: 400px;
}

.mt420 {
    margin-top: 420px;
}

.mt430 {
    margin-top: 430px;
}

.mb2 {
    margin-bottom: 2px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb6 {
    margin-bottom: 6px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb100 {
    margin-bottom: 100px;
}

.mb120 {
    margin-bottom: 120px;
}

.mb130 {
    margin-bottom: 130px;
}

.mb140 {
    margin-bottom: 140px;
}

.mb150 {
    margin-bottom: 150px;
}

.mb170 {
    margin-bottom: 170px;
}

.mb200 {
    margin-bottom: 200px;
}

.ml5 {
    margin-left: 5px;
}

.ml7 {
    margin-left: 7px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml17 {
    margin-left: 17px;
}

.ml20 {
    margin-left: 20px;
}

.ml25 {
    margin-left: 25px;
}

.ml30 {
    margin-left: 30px;
}

.ml40 {
    margin-left: 40px;
}

.ml50 {
    margin-left: 50px;
}

.ml60 {
    margin-left: 60px;
}

.ml70 {
    margin-left: 70px;
}

.ml150 {
    margin-left: 150px;
}

.ml220 {
    margin-left: 220px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr13 {
    margin-right: 13px;
}

.mr14 {
    margin-right: 14px;
}

.mr15 {
    margin-right: 15px;
}

.mr17 {
    margin-right: 17px;
}

.mr20 {
    margin-right: 20px;
}

.mr25 {
    margin-right: 25px;
}

.mr30 {
    margin-right: 30px;
}

.mr35 {
    margin-right: 35px;
}

.mr40 {
    margin-right: 40px;
}

.mr50 {
    margin-right: 50px;
}

.mr60 {
    margin-right: 60px;
}

.mr70 {
    margin-right: 70px;
}

/* padding */
.p1 {
    padding: 1px;
}

.p2 {
    padding: 2px;
}

.p3 {
    padding: 3px;
}

.p3 {
    padding: 4px;
}

.p5 {
    padding: 5px;
}

.p10 {
    padding: 10px;
}

.p14 {
    padding: 14px;
}

.p15 {
    padding: 15px;
}

.p20 {
    padding: 20px;
}

.p25 {
    padding: 25px;
}

.p30 {
    padding: 30px;
}

.p35 {
    padding: 35px;
}

.p40 {
    padding: 40px;
}

.p50 {
    padding: 50px;
}

.p90 {
    padding: 90px;
}

.pt1 {
    padding-top: 1px;
}

.pt2 {
    padding-top: 2px;
}

.pt3 {
    padding-top: 3px;
}

.pt4 {
    padding-top: 4px;
}

.pt5 {
    padding-top: 5px;
}

.pt6 {
    padding-top: 6px;
}

.pt7 {
    padding-top: 7px;
}

.pt8 {
    padding-top: 8px;
}

.pt9 {
    padding-top: 9px;
}

.pt10 {
    padding-top: 10px;
}

.pt12 {
    padding-top: 12px;
}

.pt14 {
    padding-top: 14px;
}

.pt15 {
    padding-top: 15px;
}

.pt16 {
    padding-top: 16px;
}

.pt17 {
    padding-top: 17px;
}

.pt18 {
    padding-top: 18px;
}

.pt20 {
    padding-top: 20px;
}

.pt21 {
    padding-top: 21px;
}

.pt23 {
    padding-top: 23px;
}

.pt13 {
    padding-top: 13px;
}

.pt20 {
    padding-top: 20px;
}
.pt24 {
     padding-top: 24px;
 }

.pt25 {
    padding-top: 25px;
}

.pt28 {
    padding-top: 28px;
}

.pt30 {
    padding-top: 30px;
}

.pt33 {
     padding-top: 33px;
 }

.pt35 {
    padding-top: 35px;
}

.pt40 {
    padding-top: 40px;
}

.pt45 {
    padding-top: 45px;
}

.pt50 {
    padding-top: 50px;
}

.pt55 {
    padding-top: 55px;
}

.pt60 {
    padding-top: 60px;
}

.pt65 {
    padding-top: 65px;
}

.pt70 {
    padding-top: 70px;
}
.pt75 {
     padding-top: 75px;
 }

.pt80 {
    padding-top: 80px;
}

.pt90 {
    padding-top: 90px;
}

.pt100 {
    padding-top: 100px;
}

.pt110 {
    padding-top: 110px;
}

.pt120 {
    padding-top: 120px;
}

.pt130 {
    padding-top: 130px;
}

.pt140 {
    padding-top: 140px;
}

.pt170 {
    padding-top: 170px;
}

.pt180 {
    padding-top: 180px;
}

.pt300 {
    padding-top: 300px;
}

.pb3 {
    padding-bottom: 3px;
}

.pb5 {
    padding-bottom: 5px;
}

.pb7 {
    padding-bottom: 7px;
}

.pb8 {
    padding-bottom: 8px;
}

.pb9 {
    padding-bottom: 9px;
}

.pb10 {
    padding-bottom: 10px;
}
.pb12 {
     padding-bottom: 12px;
 }

.pb14 {
    padding-bottom: 14px;
}

.pb15 {
    padding-bottom: 15px;
}

.pb18 {
    padding-bottom: 18px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb21 {
    padding-bottom: 21px;
}

.pb24 {
    padding-bottom: 24px;
}

.pb25 {
    padding-bottom: 25px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb32 {
     padding-bottom: 32px;
 }

.pb37 {
    padding-bottom: 37px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}

.pb60 {
    padding-bottom: 60px;
}

.pb70 {
    padding-bottom: 70px;
}

.pb75 {
    padding-bottom: 75px;
}

.pb80 {
    padding-bottom: 80px;
}

.pb90 {
    padding-bottom: 90px;
}

.pb100 {
    padding-bottom: 100px;
}

.pb110 {
    padding-bottom: 110px;
}

.pb120 {
    padding-bottom: 120px;
}

.pb130 {
    padding-bottom: 130px;
}

.pb300 {
    padding-bottom: 300px;
}

.pl1 {
    padding-left: 1px;
}

.pl2 {
    padding-left: 2px;
}

.pl3 {
    padding-left: 3px;
}

.pl4 {
    padding-left: 4px;
}

.pl5 {
    padding-left: 5px;
}

.pl10 {
    padding-left: 10px;
}

.pl11 {
    padding-left: 11px;
}

.pl14 {
    padding-left: 14px;
}

.pl15 {
    padding-left: 15px;
}

.pl16 {
    padding-left: 16px;
}

.pl17 {
    padding-left: 17px;
}

.pl19 {
    padding-left: 19px;
}

.pl20 {
    padding-left: 20px;
}

.pl24 {
     padding-left: 24px;
 }

.pl25 {
    padding-left: 25px;
}

.pl30 {
    padding-left: 30px;
}

.pl35 {
    padding-left: 35px;
}

.pl40 {
    padding-left: 40px;
}

.pl45 {
    padding-left: 45px;
}

.pl50 {
    padding-left: 50px;
}

.pl60 {
    padding-left: 60px;
}

.pl70 {
    padding-left: 70px;
}

.pl80 {
    padding-left: 80px;
}

.pl85 {
    padding-left: 85px;
}

.pl90 {
    padding-left: 90px;
}

.pl55 {
    padding-left: 55px;
}

.pl100 {
    padding-left: 100px;
}

.pl110 {
    padding-left: 110px;
}

.pl120 {
    padding-left: 120px;
}

.pl130 {
    padding-left: 130px;
}

.pl150 {
    padding-left: 150px;
}

.pr1 {
    padding-right: 1px;
}

.pr5 {
    padding-right: 5px;
}

.pr10 {
    padding-right: 10px;
}

.pr11 {
    padding-right: 11px;
}

.pr14 {
    padding-right: 14px;
}

.pr15 {
    padding-right: 15px;
}

.pr16 {
    padding-right: 16px;
}

.pr17 {
    padding-right: 17px;
}

.pr19 {
    padding-right: 19px;
}

.pr20 {
    padding-right: 20px;
}

.pr25 {
    padding-right: 25px;
}

.pr30 {
    padding-right: 30px;
}

.pr35 {
    padding-right: 35px;
}

.pr40 {
    padding-right: 40px;
}

.pr45 {
    padding-right: 45px;
}

.pr50 {
    padding-right: 50px;
}

.pr55 {
    padding-right: 55px;
}

.pr60 {
    padding-right: 60px;
}

.pr65 {
    padding-right: 65px;
}

.pr80 {
    padding-right: 80px;
}

.pr90 {
    padding-right: 90px;
}

.pr95 {
    padding-right: 95px;
}

.pr100 {
    padding-right: 100px;
}

.pr110 {
    padding-right: 110px;
}

.pr115 {
    padding-right: 115px;
}

.pr120 {
    padding-right: 120px;
}

.pr130 {
    padding-right: 130px;
}

.pr140 {
    padding-right: 140px;
}

/* font */
.fs_11 {
    font-size: 11px;
}

.fs_12 {
    font-size: 12px;
}

.fs_13 {
    font-size: 13px;
}

.fs_14 {
    font-size: 14px;
}

.fs_15 {
    font-size: 15px;
}

.fs_16 {
    font-size: 16px;
}

.fs_17 {
    font-size: 17px;
}

.fs_18 {
    font-size: 18px;
}

.fs_19 {
    font-size: 19px;
}

.fs_20 {
    font-size: 20px;
}

.fs_21 {
    font-size: 21px;
}

.fs_22 {
    font-size: 22px;
}

.fs_23 {
    font-size: 23px;
}

.fs_24 {
    font-size: 24px;
}

.fs_25 {
    font-size: 25px;
}

.fs_26 {
    font-size: 26px;
}

.fs_27 {
    font-size: 27px;
}

.fs_28 {
    font-size: 28px;
}

.fs_29 {
    font-size: 29px;
}

.fs_30 {
    font-size: 30px;
}

.fs_31 {
    font-size: 31px;
}

.fs_32 {
    font-size: 32px;
}

.fs_33 {
    font-size: 33px;
}

.fs_34 {
    font-size: 34px;
}

.fs_35 {
    font-size: 35px;
}

.fs_36 {
    font-size: 36px;
}

.fs_37 {
    font-size: 37px;
}

.fs_38 {
    font-size: 38px;
}

.fs_39 {
    font-size: 39px;
}

.fs_40 {
    font-size: 40px;
}

.fs_41 {
    font-size: 41px;
}

.fs_42 {
    font-size: 42px;
}

.fs_43 {
    font-size: 43px;
}

.fs_44 {
    font-size: 44px;
}

.fs_45 {
    font-size: 45px;
}

.fs_46 {
    font-size: 46px;
}

.fs_47 {
    font-size: 47px;
}

.fs_48 {
    font-size: 48px;
}

.fs_49 {
    font-size: 49px;
}

.fs_50 {
    font-size: 50px;
}

.fs_51 {
    font-size: 51px;
}

.fs_52 {
    font-size: 52px;
}

.fs_53 {
    font-size: 53px;
}

.fs_54 {
    font-size: 54px;
}

.fs_55 {
    font-size: 55px;
}

.fs_56 {
    font-size: 56px;
}

.fs_57 {
    font-size: 57px;
}

.fs_58 {
    font-size: 58px;
}

.fs_59 {
    font-size: 59px;
}

.fs_60 {
    font-size: 60px;
}

.fs_61 {
    font-size: 61px;
}

.fs_62 {
    font-size: 62px;
}

.fs_63 {
    font-size: 63px;
}

.fs_64 {
    font-size: 64px;
}

.fs_65 {
    font-size: 65px;
}

.fs_66 {
    font-size: 66px;
}

.fs_67 {
    font-size: 67px;
}

.fs_68 {
    font-size: 68px;
}

.fs_69 {
    font-size: 69px;
}

.fs_70 {
    font-size: 70px;
}

.fs_71 {
    font-size: 71px;
}

.fs_72 {
    font-size: 72px;
}


.fs_112 {
     font-size: 112px;
 }

.f_we0 {
    font-weight: 100;
}

.f_we1 {
    font-weight: 200;
}

.f_we2 {
    font-weight: 300;
}

.f_we3 {
    font-weight: 400;
}

.f_we4 {
    font-weight: 500;
}

.f_we5 {
    font-weight: 600;
}

.f_we6 {
    font-weight: 700;
}

.f_we7 {
    font-weight: 800;
}

.f_we8 {
    font-weight: 900;
}

.f_we9 {
    font-weight: 1000;
}

.letterp1 {
    letter-spacing: 1px;
}

.letterp05 {
    letter-spacing: 0.5px;
}

.letterm05 {
    letter-spacing: -0.5px;
}

.letterm06 {
    letter-spacing: -0.6px;
}

.letterm07 {
    letter-spacing: -0.7px;
}

.letterm08 {
    letter-spacing: -0.8px;
}

.letterm09 {
    letter-spacing: -0.9px;
}

.letterm19 {
    letter-spacing: -1.9px;
}

.letterm15 {
    letter-spacing: -1.5px;
}

.letterm10 {
    letter-spacing: -1.0px;
}

.letterm12 {
    letter-spacing: -1.2px;
}

.letterm1 {
    letter-spacing: -1px;
}

.letterm2 {
    letter-spacing: -2px;
}

.letterm3 {
    letter-spacing: -3px;
}

/* width */
.we7 {
    width: 7%;
}

.we10 {
    width: 10%;
}

.we15 {
    width: 15%;
}

.we100 {
    width: 100%;
}

.we20 {
    width: 19.99%;
}

.we25 {
    width: 25%;
}

.we30 {
    width: 30%;
}

.we35 {
    width: 35%;
}

.we33 {
    width: 33%;
}

.we40 {
    width: 40%;
}

.we45 {
    width: 45%;
}

.we50 {
    width: 50%;
}

.we60 {
    width: 60%;
}

.we80 {
    width: 80%;
}

.we260 {
    width: 260px;
}

.we142 {
    width: 14.2%;
}

.we_10 {
     width: 10px;
 }

.we_20 {
    width: 20px;
}
.we_24 {
     width: 24px;
 }

.we_30 {
    width: 30px;
}

.we_44 {
    width: 44px;
}

.we_50 {
    width: 50px;
}

.we_60 {
    width: 60px;
}

.we_64 {
    width: 64px;
}

.we_70 {
    width: 70px;
}

.we_80 {
     width: 80px;
 }

.we_90 {
    width: 90px;
}

.we_100 {
    width: 100px;
}

.we_110 {
    width: 110px;
}

.we_120 {
    width: 120px;
}

.we_130 {
    width: 130px;
}

.we_140 {
    width: 140px;
}

.we_150 {
    width: 150px;
}

.we_160 {
     width: 160px;
 }

.we_170 {
    width: 170px;
}

.we_180 {
     width: 180px;
 }

.we_200 {
    width: 200px;
}

.we_410 {
     width: 410px;
 }
 .we_480 {
     width: 480px;
 }

.we_220 {
    width: 220px;
}

.we_230 {
    width: 230px;
}
.we_240 {
     width: 240px;
 }

.we_300 {
    width: 300px;
}

.we_350 {
    width: 350px;
}

.we_470 {
     width: 470px;
 }

.we_750 {
    width: 750px;
}

.we_690 {
     width: 690px;
 }

.min_w1 {
    min-width: 1200px;
}

.min_w800 {
    min-width: 800px;
}
.min_w700 {
     min-width: 700px;
 }
.min_w600 {
     min-width: 600px;
 }

 .min_w500 {
     min-width: 500px;
 }

/* height */
.min_h1 {
    min-height: 800px;
}

.he100p {
    height: 100%;
}

.he10 {
    height: 10px;
}

.he15 {
    height: 15px;
}

.he20 {
    height: 20px;
}

.he25 {
    height: 25px;
}

.he29 {
    height: 29px;
}

.he30 {
    height: 30px;
}

.he35 {
    height: 35px;
}

.he37 {
    height: 37px;
}

.he38 {
    height: 38px;
}

.he40 {
    height: 40px;
}

.he43 {
    height: 43px;
}

.he45 {
    height: 45px;
}

.he50 {
    height: 50px;
}

.he55 {
    height: 55px;
}

.he60 {
    height: 60px;
}

.he65 {
    height: 65px;
}

.he70 {
    height: 70px;
}

.he75 {
    height: 75px;
}

.he80 {
    height: 80px;
}

.he85 {
    height: 85px;
}

.he90 {
    height: 90px;
}

.he95 {
    height: 95px;
}

.min_he330 {
     min-height: 330px;
 }

.he100 {
    height: 100px;
}

.he105 {
    height: 102px;
}

.he110 {
    height: 110px;
}

.he115 {
    height: 115px;
}

.he116 {
    height: 116px;
}

.he120 {
    height: 120px;
}

.he125 {
    height: 125px;
}

.he130 {
    height: 130px;
}

.he135 {
    height: 135px;
}

.he140 {
    height: 140px;
}

.he145 {
    height: 145px;
}

.he149 {
    height: 149px;
}

.he150 {
    height: 150px;
}

.he155 {
    height: 155px;
}

.he160 {
    height: 160px;
}

.he170 {
    height: 170px;
}

.he175 {
    height: 175px;
}

.he180 {
    height: 180px;
}

.he185 {
    height: 185px;
}

.he190 {
    height: 190px;
}

.he157 {
    height: 157px;
}

.he240 {
    height: 240px;
}

.he250 {
    height: 250px;
}

.he200 {
    height: 200px;
}

.he210 {
    height: 210px;
}

.he220 {
    height: 220px;
}

.he230 {
    height: 230px;
}

.he240 {
    height: 240px;
}

.he245 {
    height: 245px;
}

.he250 {
    height: 250px;
}

.he260 {
    height: 260px;
}
.he265 {
     height: 265px;
 }

.he270 {
    height: 270px;
}

.he280 {
    height: 280px;
}

.he285 {
    height: 285px;
}

.he290 {
    height: 290px;
}

.he300 {
    height: 300px;
}

.he320 {
    height: 320px;
}

.he326 {
    height: 326px;
}

.he330 {
    height: 330px;
}

.he340 {
    height: 340px;
}

.he360 {
    height: 360px;
}

.he370 {
    height: 370px;
}

.he380 {
    height: 380px;
}

.he400 {
    height: 400px;
}

.he410 {
     height: 410px;
 }

.he430 {
    height: 430px;
}

.he470 {
    height: 470px;
}

.he302 {
    height: 302px;
}

.he314 {
    height: 314px;
}

.he350 {
    height: 350px;
}

.he460 {
    height: 460px;
}

.he480 {
    height: 480px;
}

.he500 {
    height: 500px;
}

.he520 {
    height: 520px;
}

.he530 {
    height: 530px;
}

.he540 {
    height: 540px;
}

.he570 {
    height: 570px;
}

.he580 {
    height: 580px;
}

.he600 {
    height: 600px;
}

.he635 {
    height: 635px;
}

.he650 {
    height: 650px;
}

.he670 {
    height: 670px;
}

.he698 {
    height: 698px;
}

.he700 {
    height: 700px;
}

.he800 {
    height: 800px;
}

/*color*/
.fc00 {
    color: #fff;
}

a.fc00 {
    color: #fff;
}

a.fc0 {
    color: #000;
}

.fc0 {
    color: #000;
}

.fc1 {
    color: #111;
}

.fc2 {
    color: #222;
}

.fc3 {
    color: #333;
}

.fc4 {
    color: #444;
}

.fc5 {
    color: #555;
}

.fc6 {
    color: #666;
}

.fc7 {
    color: #777;
}

.fc8 {
    color: #888;
}

.fc9 {
    color: #999;
}

.fc11 {
    color: #c9c9c9;
}

.fc22 {
    color: #99bad8;
}

.fc33 {
    color: #6e6e6e;
}

.fc44 {
    color: #4d4d4d;
}

.fc55 {
    color: #a8c1d8;
}

.fc66 {
    color: #76beff;
}

.fc77 {
    color: #f9ff9f;
}

.fc88 {
    color: #da202b;
}

.fc99 {
    color: #ccfbff;
}

.fc100 {
    color: #3465ce;
}

.fc200 {
    color: #014e94;
}

.fc300 {
    color: #c2e2ff;
}

.fc400{
     color:#2170CC;
}

.fc_red {
    color: #ea0000;
}

.bg014e94 {
    background-color: #014e94;
}

/* 파일 필드 숨기기 */
.filebox input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/*select style*/
select::-ms-expand {
    display: none;
}

/*############################################ 초기설정끝 ###################################################*/
/* form-control */
.form-control {
    display: block;
    width: 100%;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #e1e1e1;
    border-radius: 0px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:disabled {
    background: #fff;
    line-height: 100%;
}

select.select_style {
    background: url("../images/common/sel_bt.png") no-repeat;
    /* 네이티브 화살표 대체 */
    background-position: right 10px top 50%;
    -webkit-appearance: none;
    /* 네이티브 외형 감추기 */
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    text-align: center;
    outline: none;
    border: 1px solid #cecece;
    border-radius: 7px;
}

.form-control1 {
    display: block;
    width: 100%;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #cecece;
    border-radius: 7px;
    padding: 10px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* 버튼 */
.d_bt {
    border-radius: 0px;
    border: 0;
    background: #000;
    line-height: 100%;
}

.d_bt:hover {
    background: #000;
}

.n_bt {
    border-radius: 0px;
    border: 1px solid #aaa;
    background: transparent;
    line-height: 100%;
    padding: 0 20px;
}

.n_bt:hover {
    background: transparent;
}

.main_bt1 {
    border-radius: 0px;
    border: 0;
    background: #ff0000;
    line-height: 100%;
    width: 50px;
    height: 50px;
}

.main_bt1:hover {
    background: #ff0000;
}

.map_bt_h {
    border-radius: 30px;
    background: #014e94;
    color: #fff;
    border: 0;
}

.map_bt_n {
    border-radius: 30px;
    background: #d6d6d6;
    color: #333;
    border: 0;
}

.map_bt_squ {
    background: #fff;
    color: #e31f46;
    border: 0;
}

.map_bt_squ2 {
    background: #014e94;
    color: #fff;
    border: 0;
}

.map_bt_squ3 {
    background: #d6d6d6;
    color: #333;
    border: 0;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ START @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
.container {
    max-width: 1190px;
    width: 100%;
}

.container-fluid {}

.lang_bt1 {
    height: 21px;
    width: 33px;
    font-size: 12px;
    font-weight: bold;
    color: #000;
    background: #f2f2f2;
    border-radius: 20px;
    border: 0;
}

.lang_bt2 {
    height: 21px;
    width: 33px;
    font-size: 12px;
    font-weight: bold;
    color: #828282;
    background: #fff;
    border-radius: 20px;
    border: 0;
}

.lang_bt3 {
    height: 21px;
    width: 80px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: #004d9a;
    border-radius: 20px;
    border: 0;
}

.lh120 {
    line-height: 120px;
}

.lh180p {
    line-height: 180%;
}

.lh250 {
    line-height: 250px;
}

.lh150 {
    line-height: 150px;
}

.lh32 {
     line-height: 32px;
 }

.lh35 {
    line-height: 35px;
}

.lh60 {
    line-height: 60px;
}

.lh70 {
    line-height: 70px;
}

.lh90 {
    line-height: 90px;
}

.lh54 {
    line-height: 57px;
}

.lh30 {
    line-height: 30px;
}
.lh28 {
     line-height: 28px;
 }
.lh25 {
     line-height: 25px;
 }
.lh14 {
     line-height: 14px;
 }

.lang_box {
    position: absolute;
    top: 5px;
    right: -30px;
    width: 80px;
    border: 1px solid #e7e7e7;
    z-index: 10;
    line-height: 140%;
    border-radius: 10px;
}

.lang_box a:link {
    color: #000;
}

.lang_box a:visited {
    color: #000;
}

.lang_box a:hover {
    color: #e31f46;
}

.comp_box {
    background: #eeeeee;
    padding: 5px 0;
}

.bor_a {
    border: 1px solid #cacaca;
}

.bor_a1 {
    border: 5px solid #014e94;
}

.bor_a2{
     border-radius:16px;
     border:1px solid #D8D8D8;
}
.bg_color0 {
    background: #fff;
}

.bg_color1 {
    background: #a9a8ad;
}

.bg_color2 {
    background: #014e94;
}

.bg_color3 {
    background: #f2f2f2;
}

.bg_color4 {
    background: #f9f9f9;
}

.bg_color5 {
    background: #f6f6f6;
}

.bg_color6 {
    background: #f4f4f4;
}
.bg_color7 {
     background: #F3F4F6;
 }
 .bg_color8 {
     background: #074287;
 }
 


.footer_bg {
    background: #464d52;
}

.sub_title_text {
    font-size: 48px;
    margin-top: 55px;
}

.index_banner_bg1 {
    background: url("../images/sub/footer_img.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.wo_tabh {
    border-top: 2px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 0px solid #000;
}

.wo_tabn {
    border-top: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #000;
}

.sub_bg100 {
    background: url("../images/sub/sbg.jpg");
}

.sub_bg10011 {
    background: url("../images/sub/sbg1.jpg");
}

.sub_bg1 {
    background: url("../images/sub/sub_title1.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.sub_bg2 {
    background: url("../images/sub/sub_title2.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.sub_bg3 {
    background: url("../images/sub/sub_title3.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.sub_bg4 {
    background: url("../images/sub/sub_title4.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.sub_bg5 {
    background: url("../images/sub/sub_title5.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.sub_bg6 {
    background: url("../images/sub/sub_title6.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.sub_bg200 {
    background: url("../images/sub/sub_i24.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.sub_bg300 {
    background: url("../images/sub/sub_i29.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.index_bg_box {
    color: #fff;
    position: absolute;
    top: 140px;
    text-align: center;
    width: 100%;
}

.index_bg1 {
    background: url("../images/index/main_about_img04.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.index_bg2 {
    background: url("../images/index/main_about_img05.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.index_bg3 {
    background: url("../images/index/main_about_img06.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.index_bg4 {
    background: url("../images/index/index_img4.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.index_bg4_1 {
    background: url("../images/sub/sub_i300.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.index_bg5 {
    background: url('../images/index/index_bg1.png') no-repeat;
    background-position: top left;
}

.index_bg7 {
    background: url('../images/index/index_bg2.png') no-repeat, #f1f1f1;
    background-position: top right;
}

.index_bg8 {
    background: url('../images/index/index_img9.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.index_bg9 {
    background: url('../images/index/index_img10.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.page_box1 {
    border: 1px solid #b7b7b7;
    background: #f5f5f5;
    border-radius: 10px;
}

.bor_t1 {
    border-top: 1px solid #e5e5e5;
}

.bor_t2 {
     border-top: 2px solid #000;
 }

.bor_b1 {
    border-bottom: 1px solid #e5e5e5;
}

.bor_b2 {
    border-bottom: 2px solid #000;
}

.bor_b3 {
    border-bottom: 1px solid #000;
}

.bor_b4 {
    border-bottom: 1px solid #e1e1e1;
}

.bor_b5 {
    border-bottom: 1px solid #8bbd1d;
}

.bor_b6 {
    border-bottom: 1px solid #125eac;
}

.bor_b7 {
    border-bottom: 1px solid #ed7000;
}

.bor_b8 {
    border-bottom: 1px solid #014e94;
}

.bor_r1 {
    border-right: 1px solid #000;
}

.bor_l1 {
    border-left: 1px solid #000;
}

.bor_ra16 {
     border-radius:16px;
 }

.right_menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 80%;
    height: 100%;
    z-index: 100000000;
    background: #fff;
}

.right_menu_bg {
    position: fixed;
    top: 0;
    right: -100000px;
    background: #000;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    z-index: 10000000;
}

.menu_cl_bt {
    position: absolute;
    top: 70px;
    left: -80px;
}

.sub_menu_a a:link {
    color: #91aec9;
}

.sub_menu_a a:visited {
    color: #91aec9;
}

.sub_menu_a a:hover {
    color: #fff;
}

.slink a:link {
    color: #555;
}

.slink a:visited {
    color: #555;
}

.slink a:hover {
    color: #000;
}

.wo_table1 {
    width: 100%;
    border-top: 1px solid #aeaeae;
    border-right: 1px solid #aeaeae;
}

.wo_table1 td:first-child {
    background: #f6f6f6;
    text-align: center;
}

.wo_table1 td {
    border-bottom: 1px solid #aeaeae;
    border-left: 1px solid #aeaeae;
    padding: 10px;
}

.wo_table2 {
    width: 100%;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.wo_table2 td {
    padding: 10px;
}

.wo_table3 {
    width: 100%;
    border-top: 2px solid #000;
}

.wo_table3 tr:first-child {
    background: #f4f4f4;
}

.wo_table3 tr {
    border-bottom: 1px solid #f4f4f4;
}

.wo_table3 td {
    padding: 10px;
}

.wo_table4 {
    width: 100%;
    border-top: 2px solid #000;
}

.wo_table4 tr:first-child {
    background: #f4f4f4;
    text-align: center;
}

.wo_table4 td:first-child {
    border-left: 0px solid #e4e4e4;
}

.wo_table4 td {
    border-bottom: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    padding: 10px;
}

.wo_table5 {
    width: 100%;
    border-top: 2px solid #000;
}

.wo_table5 th:first-child {
    background: #f9f9f9;
}

.wo_table5 th {
    border-bottom: 1px solid #e4e4e4;
    border-left: none;
    padding: 10px 0 10px 20px;
    font-weight: 400;
}

.wo_table5 td:first-child {
    border-left: 0px;
}

.wo_table5 td {
    border-bottom: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    padding: 10px 0 10px 20px;
}

.wo_table6 {
    width: 100%;
    border-top: 2px solid #000;
}

.wo_table6 tr {
    border-bottom: 1px solid #f4f4f4;
}

.wo_table6 td {
    padding: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.wo_table7 {
    width: 100%;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.wo_table7 td {
    padding: 20px;
}

.prl10 {
    padding: 0 10px;
}

.page_h {
    width: 35px;
    height: 35px;
    border: 1px solid #ff771f;
    color: #ff771f;
    font-weight: 800;
    margin: 0 5px;
}

.page_n {
    width: 35px;
    height: 35px;
    border: 1px solid #c4c4c0;
    color: #666666;
    margin: 0 5px;
}

.he280_150 {
    min-height: 280px;
}

.fs_16_12 {
    font-size: 16px;
}

.fs_14_12 {
    font-size: 14px;
}

.pl50_0 {
    padding-left: 50px;
}

.fs_18_14 {
    font-size: 18px;
}

.prl10_0 {
    padding: 0 10px;
}

.he530_250 {
    height: 530px;
}

.he180_140 {
    height: 180px;
}

.he700_250 {
    height: 700px;
}

.he700_350 {
    height: 700px;
}

.he155_130 {
    height: 155px;
}

.he90_80 {
    height: 90px;
}

.he100_90 {
    height: 100px;
}

.fs_16_14 {
    font-size: 16px;
}

.he70_40 {
    height: 70px;
    line-height: 70px;
}

.he370_310 {
    height: 370px;
}

.mt120_20 {
    margin-top: 120px;
}

.fs_34_24 {
    font-size: 34px;
}

.fs_20_18 {
    font-size: 20px;
}

.fs_34_26 {
    font-size: 34px;
}

.fs_20_16 {
    font-size: 20px;
}

.fs_24_18 {
    font-size: 24px;
}

.fs_20_14 {
    font-size: 20px;
}

.fs_18_14 {
    font-size: 18px;
}

.we20_25 {
    width: 20%;
}

.mt60_30 {
    margin-top: 60px;
}

.mt30_10 {
    margin-top: 30px;
}

.mt45_30 {
    margin-top: 45px;
}

.pl30_10 {
    padding-left: 30px;
}

.he300_200 {
    height: 300px;
}

.prl15_0 {
    padding-left: 15px;
    padding-right: 15px;
}

.bor_l1_0 {
    border-left: 1px solid #000;
}

.he120_100p {
    height: 120px;
}

.mt20_0 {
    margin-top: 20px;
}

.mt10_0 {
    margin-top: 10px;
}

.mt100_30 {
    margin-top: 100px;
}

.pt25_10 {
    padding-top: 25px;
}

.pt5_10 {
    padding-top: 5px;
}

.pt15_10 {
    padding-top: 15px;
}

.we_200_150 {
    width: 200px;
}

li.mo {
    width: 100px;
    float: left;
}

.s_menu_pl {
    padding-left: 5.6%;
}

@media (max-width: 1200px) {
    .s_menu_pl {
        padding-left: 5.3%;
    }
}

.po_bottom0_20 {
    bottom: 0px;
}

.we100p200 {
    width: 100%;
}

.he100p40 {
    height: 100%;
}

@media (max-width: 767px) {

    .we100p200 {
        width: 180px;
    }

    .he100p40 {
        height: 45px;
    }

    .po_bottom0_20 {
        bottom: 20px;
    }

    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .he280_150 {
        min-height: 150px;
    }

    .fs_16_12 {
        font-size: 12px;
    }

    .fs_14_12 {
        font-size: 12px;
    }

    .fs_50_40_24 {
        font-size: 24px;
    }

    .fs_30_24_18 {
        font-size: 18px;
    }

    .fs_24_18_14 {
        font-size: 14px;
    }

    .fs_20_16_14 {
        font-size: 14px;
    }

    .fs_20_16_12 {
        font-size: 12px;
    }

    .pl50_0 {
        padding-left: 0px;
    }

    .fs_26_20_16 {
        font-size: 16px;
    }

    .fs_18_14 {
        font-size: 14px;
    }

    .he350_240_200 {
        height: 200px;
    }

    .prl10_0 {
        padding: 0 0px;
    }

    .he530_250 {
        height: 250px;
    }

    .ml50_0 {
        margin-left: 0px;
    }

    .he650_250 {
        height: 250px;
    }

    .he570_330 {
        height: 330px;
    }

    .he570_360 {
        height: 370px;
    }

    .he180_140 {
        height: 140px;
    }

    .he700_250 {
        height: 250px;
    }

    .he700_350 {
        height: 520px;
    }

    .he155_130 {
        height: 130px;
    }

    .he90_80 {
        height: 80px;
    }

    .he100_90 {
        height: 90px;
    }

    .fs_16_14 {
        font-size: 14px;
    }

    .he70_40 {
        height: 40px;
        line-height: 40px;
    }

    .he180_140 {
        height: 100%;
    }

    .index_bg6 {
        background: #f1f1f1;
    }

    .he370_310 {
        height: 310px;
    }

    .mt120_20 {
        margin-top: 20px;
    }

    .mt60_30 {
        margin-top: 30px;
    }

    .fs_34_24 {
        font-size: 24px;
    }

    .fs_20_18 {
        font-size: 18px;
    }

    .fs_34_26 {
        font-size: 26px;
    }

    .fs_20_16 {
        font-size: 16px;
    }

    .fs_24_18 {
        font-size: 18px;
    }

    .fs_20_14 {
        font-size: 14px;
    }

    .fs_18_14 {
        font-size: 14px;
    }

    .he400_300 {
        height: 300px;
    }

    .he120_100p {
        height: 100%;
    }

    .mt20_0 {
        margin-top: 0px;
    }

    .mt10_0 {
        margin-top: 0px;
    }

    .sub_title_text {
        font-size: 30px;
        margin-top: 50px;
    }

    .we20_25 {
        width: 25%;
    }

    .prl80_40_0 {
        padding: 0 0px;
    }

    .mt30_10 {
        margin-top: 10px;
    }

    .pl30_10 {
        padding-left: 10px;
    }

    .he300_200 {
        height: 200px;
    }

    .prl15_0 {
        padding-left: 0px;
        padding-right: 0px;
    }

    .bor_l1_0 {
        border-left: 0px solid #000;
    }

    .mt100_30 {
        margin-top: 30px;
    }

    .pt25_10 {
        padding-top: 10px;
    }

    .pt5_10 {
        padding-top: 10px;
    }

    .pt15_10 {
        padding-top: 10px;
    }

    .we_200_150 {
        width: 110px;
    }

    li.mo {
        width: 100px;
        float: none;
    }
}

/* Small devices (tablets or large size smart phone of size 768px and up) */
@media (min-width: 768px) {
    .button_gnb {
        width: 85px;
        height: 30px;
        display:inline-block;
        text-align: center;
        cursor: pointer;
        margin-top:30px;
        position: relative;
        box-sizing: border-box;
        overflow: hidden;
    }

    .eff_gnb {
        width: 85px;
        height: 30px;
        left: -85px;
        background: #014e94;
        position: absolute;
        transition: all .5s ease;
        z-index: 1;
    }

    .eff_gnb_fix {
        width: 85px;
        height: 30px;
        background: #014e94;
        color: #fff;
        position: absolute;
        z-index: 1;
        left: 0;
    }

    .button_gnb_02 {
        width: 150px;
        height: 30px;
        float: left;
        text-align: center;
        cursor: pointer;
        margin-top:30px;
        position: relative;
        box-sizing: border-box;
        overflow: hidden;
    }

    .eff_gnb_02 {
        width: 150px;
        height: 30px;
        left: -150px;
        background: #014e94;
        position: absolute;
        transition: all .5s ease;
        z-index: 1;
    }

    .eff_gnb_fix_02 {
        width: 150px;
        height: 30px;
        background: #014e94;
        color: #fff;
        position: absolute;
        z-index: 1;
        left: 0;
    }

    .sub_position {
        position: relative;
        top: 0;
        z-index: 1;
    }

    .he280_150 {
        height: 150px;
    }

    .fs_50_40_24 {
        font-size: 24px;
    }

    .fs_30_24_18 {
        font-size: 18px;
    }

    .fs_24_18_14 {
        font-size: 18px;
    }

    .fs_20_16_14 {
        font-size: 16px;
    }

    .fs_26_20_16 {
        font-size: 20px;
    }

    .fs_20_16_12 {
        font-size: 16px;
    }

    .pl50_0 {
        padding-left: 0px;
    }

    .he350_240_200 {
        height: 240px;
    }

    .ml50_0 {
        margin-left: 0px;
    }

    .he650_250 {
        height: 250px;
    }

    .he570_330 {
        height: 360px;
    }

    .he570_360 {
        height: 410px;
    }

    .he700_250 {
        height: 250px;
    }

    .he700_350 {
        height: 520px;
    }

    .he70_40 {
        height: 40px;
        line-height: 40px;
    }

    .he180_140 {
        height: 180px;
    }

    .index_bg6 {
        background: #f1f1f1;
    }

    .he400_300 {
        height: 400px;
    }

    .sub_title_text {
        font-size: 40px;
        margin-top: 50px;
    }

    .prl80_40_0 {
        padding: 0 40px;
    }

    .mt45_30 {
        margin-top: 30px;
    }
}

/* Medium devices (desktops, laptops of size 992px and up) */
@media (min-width: 992px) {
    .prl20_10 {
        padding: 0 15px;
    }

    .prl15_10 {
        padding: 0 10px;
    }

    .sub_mbox1 {
        width: 90px;
        padding-left: 0;
        margin-left: 30px;
        box-sizing: border-box;
    }

    .sub_mbox2 {
        width: 90px;
        padding-left: 0;
        box-sizing: border-box;
    }

    .sub_mbox3 {
        width: 80px;
        padding-left: 0;
        box-sizing: border-box;
    }

    .sub_mbox4 {
        width: 90px;
        padding-left: 0;
        box-sizing: border-box;
    }

    .sub_mbox5 {
        width: 90px;
        padding-left: 0;
        box-sizing: border-box;
    }

    .sub_mbox6 {
        width: 90px;
        padding-left: 0;
        box-sizing: border-box;
    }

    .fs_21_18 {
        font-size: 18px;
    }

    .sub_position {
        position: relative;
        top: -35px;
        z-index: 1;
    }

    .fs_50_40_24 {
        font-size: 40px;
    }

    .fs_30_24_18 {
        font-size: 24px;
    }

    .he280_150 {
        height: 280px;
    }

    .fs_24_18_14 {
        font-size: 24px;
    }

    .fs_20_16_14 {
        font-size: 20px;
    }

    .fs_26_20_16 {
        font-size: 26px;
    }

    .fs_20_16_12 {
        font-size: 20px;
    }

    .pl50_0 {
        padding-left: 50px;
    }

    .he350_240_200 {
        height: 350px;
    }

    .ml50_0 {
        margin-left: -50px;
    }

    .he650_250 {
        height: 650px;
    }

    .he570_330 {
        height: 570px;
    }

    .he570_360 {
        height: 570px;
    }

    .he700_250 {
        height: 700px;
    }

    .he700_350 {
        height: 700px;
    }

    .he70_40 {
        height: 70px;
        line-height: 70px;
    }

    .he180_140 {
        height: 180px;
    }

    .index_bg6 {
        background: #fff;
    }

    .we88 {
        width: 12.5%;
    }

    .sub_title_text {
        font-size: 40px;
        margin-top: 100px;
    }

    .prl80_40_0 {
        padding: 0 80px;
    }

}

/* Large devices (large desktops, screens of size 1200px and up) */
@media (min-width: 1200px) {
    .button_gnb {
        width: 102px;
        height: 30px;
        display: inline-block;
        text-align: center;
        cursor: pointer;
        margin-top:30px;
        position: relative;
        box-sizing: border-box;
        overflow: hidden;
    }

    .eff_gnb {
        width: 102px;
        height: 30px;
        left: -102px;
        background: #014e94;
        position: absolute;
        transition: all .5s ease;
        z-index: 1;
    }
    .eff_gnb_fix {
        width: 102px;
        height: 30px;
        background: #014e94;
        color: #fff;
        position: absolute;
        z-index: 1;
        left: 0;
    }
    .prl20_10 {
        padding: 0 20px;
    }

    .prl15_10 {
        padding: 0 15px;
    }

    .sub_mbox1 {
        width: 100px;
        padding-left: 0;
        margin-left: 50px;
        box-sizing: border-box;
    }

    .sub_mbox2 {
        width: 100px;
        padding-left: 0;
        box-sizing: border-box;
    }

    .sub_mbox3 {
        width: 95px;
        padding-left: 0;
        box-sizing: border-box;
    }

    .sub_mbox4 {
        width: 100px;
        padding-left: 0;
        box-sizing: border-box;
    }

    .sub_mbox5 {
        width: 100px;
        padding-left: 0;
        box-sizing: border-box;
    }

    .sub_mbox6 {
        width: 100px;
        padding-left: 0;
        box-sizing: border-box;
    }

    .fs_21_18 {
        font-size: 21px;
    }

    .fs_50_40_24 {
        font-size: 50px;
    }

    .fs_30_24_18 {
        font-size: 30px;
    }

    .he70_40 {
        height: 70px;
        line-height: 70px;
    }

    .he180_140 {
        height: 180px;
    }

    .index_bg6 {
        background: #fff;
    }

    .prl80_40_0 {
        padding: 0 80px;
    }

        .counsel_bt2{
            border:none;
            color: #111;
            background: #f1f1f1;
            padding: 2px 10px;
            font-weight: 600;
            width:100px;
        }

        .reporting_bt2 {
            border:none;
            color: #fff;
            background: #014e94;
            padding: 2px 10px;
            margin-top:2px;
            font-weight: 600;
            width:100px;
        }


}

/* chartlist */
.chart_wrap div {
    height: 330px;
    margin: 0;
}

.chart_wrap div:first-child {
    margin: 0;
}

.chart_wrap div:after {
    width: 100%;
    background-color: #fff;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-align: center;
    padding: 10px 0 0;
}




.chart_esg_wrap div {
    margin: 0;
}

.chart_esg_wrap div:first-child {
    margin: 0;
}

.chart_esg_wrap div:after {
    width: 100%;
    background-color: #fff;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-align: center;
    padding: 10px 0 0;
}






/* Bullets */
.wp_ad_style .swiper-pagination-bullet {
    width: 30px;
    height: 1px;
    display: inline-block;
    border-radius: 100%;
    /*background: transparent;*/
    background: #fff;
    opacity: 1;
    border: 0px solid #fff;
}

.wp_ad_style button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.wp_ad_style .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.wp_ad_style .swiper-pagination-white .swiper-pagination-bullet {
    background: #ed1d24;
}

/*hover*/
.wp_ad_style .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ed1d24;
    border-radius: 10px;
}

.wp_ad_style .swiper-pagination-white .swiper-pagination-bullet-active {
    background: #ed1d24;
}

.wp_ad_style .swiper-pagination-black .swiper-pagination-bullet-active {
    background: #ed1d24;
}

.wp_ad_style .swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    -moz-transform: translate3d(0px, -50%, 0);
    -o-transform: translate(0px, -50%);
    -ms-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

.wp_ad_style .swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 0;
    display: block;
}

.wp_ad_style .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}


.gt_tab_n {background-color: #F3F4F6;}
.gt_tab_h {background-color: #074287; color:#fff;}

.gt_table1 {width:100%;}
.gt_table1 tr:first-child{background:#074287; color:#fff; font-weight:800;}
.gt_table1 td{padding:10px; border-right:1px solid #CED4DA; border-bottom:1px solid #CED4DA;}
.gt_table1 td:last-child{padding:10px; border-right:0; border-bottom:1px solid #CED4DA;}


.gt_table_br1 {border-right:1px solid #CED4DA !important;}
.gt_table_title {background:#074287; color:#fff; font-weight:800;}

.gt_table2 {width:100%;}
.gt_table2 tr:first-child{background:#014e94; color:#fff; font-weight:800;}
.gt_table2 td{padding:15px; border-right:1px solid #CED4DA; border-bottom:1px solid #CED4DA;}
.gt_table2 td:last-child{padding:15px; border-right:0; border-bottom:1px solid #CED4DA;}
.gt_table2_br1 {border-right:1px solid #CED4DA !important;}
.gt_table2_title {background:#014e94; color:#fff; font-weight:700;}


.table_top {vertical-align: top !important;}

.he360_200 {height:360px;}
.he260_200 {height:260px;}
.sub_position2 {
     position: relative;
     top: -60px;
     z-index: 1;
}

.so_bg1 {
     background: url('/views/_layout/bootstrap/images/sub/continue/s_img5.png') no-repeat;
     background-size: cover;
     background-position: center;
}

.so_bg2 {
     background: url('/views/_layout/bootstrap/images/sub/continue/s_img7.png') no-repeat;
     background-size: cover;
     background-position: center;
}
.so_bg3 {
     background: url('/views/_layout/bootstrap/images/sub/continue/s_img8.png') no-repeat;
     background-size: cover;
     background-position: center;
}
.so_bg4 {
     background: url('/views/_layout/bootstrap/images/sub/continue/s_img9.png') no-repeat;
     background-size: cover;
     background-position: center;
}
.so_bg5 {
     background: url('/views/_layout/bootstrap/images/sub/continue/s_img10.png') no-repeat;
     background-size: cover;
     background-position: center;
}

.so_bg6 {
     background: url('/views/_layout/bootstrap/images/sub/continue/s_img11.png') no-repeat;
     background-size: cover;
     background-position: center;
}
.so_bg7 {
     background: url('/views/_layout/bootstrap/images/sub/continue/s_img12.png') no-repeat;
     background-size: cover;
     background-position: center;
}
.so_bg8 {
     background: url('/views/_layout/bootstrap/images/sub/continue/s_img13.png') no-repeat;
     background-size: cover;
     background-position: center;
}
.so_bg9 {
     background: url('/views/_layout/bootstrap/images/sub/continue/s_img14.png') no-repeat;
     background-size: cover;
     background-position: center;
}
.so_bg10 {
     background: url('/views/_layout/bootstrap/images/sub/continue/s_img15.png') no-repeat;
     background-size: cover;
     background-position: center;
}

.so_bg11 {
     background: url('/views/_layout/bootstrap/images/sub/continue/g_img5.png') no-repeat;
     background-size: cover;
     background-position: center;
}

.so_bg12 {
     background: url('/views/_layout/bootstrap/images/sub/continue/g_img6.png') no-repeat;
     background-size: cover;
     background-position: center;
}

.tab_box_no {
     width:180px;
     height:180px;
     border:1px solid #E5E7EB;
     background:#E5E7EB;
     border-radius:100px;
     box-shadow: 0 0 0 10px #fff inset;
     color:#000;
}
.tab_box_ho {
     width:180px;
     height:180px;
     border:1px solid #074287;
     background:#074287;
     border-radius:100px;
     box-shadow: 0 0 0 10px #fff inset;
     color:#fff;
}

.bor_s {border:1px solid #074287; color:#074287;}


.pb50_0{padding-bottom:50px;}
.fs_32_20 {font-size:32px;}
.fs_40_24 {font-size:40px;}
.pt40_20{padding-top:40px;}
.pb40_20{padding-bottom:40px;}
.pt70_30{padding-top:70px;}
.pb70_30{padding-bottom:70px;}
.we_470_100p {width:470px;}
.p40_20{padding:40px;}
.he300_140 {height:300px;}
.fs_80_30 {font-size:80px;}
.he480_200 {height:480px;}
.he480_100p {height:480px;}
.p30_20 {padding:30px;}
.pb30_15 {padding-bottom:30px;}
.we_re {width:19.99%;}
@media (max-width: 992px) {
     .we_re {width:50%;}
     .sub_position2 {top:0;}
     
}
@media (max-width: 767px) {
     .we_re {width:100%;}
     .pb30_15 {padding-bottom:15px;}
     .p30_20 {padding:20px;}
     .he480_200 {height:200px;}
     .fs_80_30 {font-size:30px;}
     .he300_140 {height:140px;}
     .p40_20{padding:20px;}
     .we_470_100p {width:100%;}
     .he360_200 {height:200px;}
     .he260_200 {height:200px;}
     .fs_32_20 {font-size:20px;}
     .fs_40_24 {font-size:24px;}
     .pb50_0{padding-bottom:0px;}
     .pt40_20{padding-top:20px;}
     .pb40_20{padding-bottom:20px;}
     .pt70_30{padding-top:30px;}
     .pb70_30{padding-bottom:30px;}
     .xs_100p {width:100%;}
     .he480_100p {height:100%;}
}

