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


:root {
    --gray_0  : #FFFFFF;
    --gray_5  : #F4F5F6;
    --gray_10 : #E6E8EA;
    --gray_20 : #CDD1D5;
    --gray_30 : #B1B8BE;
    --gray_40 : #8A949E;
    --gray_50 : #6D7882;
    --gray_60 : #58616A;
    --gray_70 : #464C53;
    --gray_80 : #33363D;
    --gray_90 : #1E2124;
    --gray_95 : #131416;
    --gray_100: #000000;

    --primary_5 : #EEF4FC;
    --primary_10: #DCE8F9;
    --primary_20: #B7D0F5;
    --primary_30: #8CB5F3;
    --primary_40: #4189F3;
    --primary_50: #166DEE;
    --primary_60: #115AC6;
    --primary_70: #114797;
    --primary_80: #113569;
    --primary_90: #0F2038;
    --primary_95: #0C1522;

    --secondary_5 : #EEF7FC;
    --secondary_10: #DCEFF9;
    --secondary_20: #B7E1F5;
    --secondary_30: #8BD1F3;
    --secondary_40: #4BBAF2;
    --secondary_50: #1B9FE2;
    --secondary_60: #007DBC;
    --secondary_70: #205889;
    --secondary_80: #0E3B63;
    --secondary_90: #082136;
    --secondary_95: #051421;

    --point_5 : #FFF8EF;
    --point_10: #FFF6E3;
    --point_20: #FFE4C4;
    --point_30: #FFCE7B;
    --point_40: #F39C39;
    --point_50: #E76400;
    --point_60: #E74900;
    --point_70: #A8531F;
    --point_80: #6C3F0D;
    --point_90: #492B08;
    --point_95: #2F1C06;

    --danger_5 : #FCEEEE;
    --danger_10: #F9DCDC;
    --danger_20: #F5B7B7;
    --danger_30: #F38C8C;
    --danger_40: #FF6161;
    --danger_50: #EA1A1A;
    --danger_60: #B82E2E;
    --danger_70: #971111;
    --danger_80: #740606;
    --danger_90: #440404;
    --danger_95: #2B0303;

    /* 글자크기 */
    --heading_small: 17px;

    --body_medium: 15px;

    --label_small: 12px;
    --label_medium: 13px;

    --navigation_small: 13px;

    /* radius */
    --radius_small: 6px;
    --radius_medium: 6px;
}

/* -----------------------------body_layout---------------------------- */
#body_layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: var(--gray_5);
}

/* -------------------------------header------------------------------- */
#header {
    position: absolute;
    left: 0;
    display: flex;
    height: 100vh; /* 전체 화면 높이 */
    overflow: visible; /* 전체 페이지 스크롤 막음 */
    box-sizing: border-box;
    user-select: none;
    z-index: 140;
}
/* ---------------------------contents-header------------------------- */
#content_header {
    position: sticky;
    top: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    z-index: 100;
    background-color: var(--gray_0);
    box-shadow: 0 0 10px var(--gray_10);
    padding: 0 50px;
}

#menu_path {
    display: flex;
    height: 55px;
    align-items: center;
}

#menu_path &gt; div {
    font-size: 13px;
    color: var(--gray_70);
    font-weight: 400;
}

#current_menu {
    font-size: 32px;
    font-weight: 400;
    color: var(--gray_80);
    height: 95px;
    display: flex;
    align-items: center;
}

.path_gubun {
    padding: 0 15px;
}

/* ------------------------------contents----------------------------- */

#content_layout {
    width: calc(100vw - 306px);
    height: 100vh;
    position: absolute;
    left: 306px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-sizing: border-box;
}

#content_box {
    padding: 0 50px;
    flex-grow: 1;
}

#contents {
    width: 1200px;
}

/* -------------------------------footer------------------------------- */
#footer {
    height: 72px;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray_30);
}

#footer_box &gt; a {
    margin-left: 10px;
    text-decoration: underline;
    cursor: pointer;
}
/* -------------------------------quick------------------------------- */

#side_box {
    position: fixed;
    height: 100vh;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 999;
}

#quick_menu {
    position: absolute;
    right: 0;
}

#quick_menu .quick_btn {
    position: absolute;
    top: 15%;
    left: -30px;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
    overflow: hidden;
}

#quick_contents {
    width: 155px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 8px 5px;
}

#quick_contents :is(div, img) {
    width: 100%;
}

#quick_contents div:has(img) {
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
    overflow: hidden;
}

#quick_contents div.single_menu {
    height: 35px;
    border-bottom: 1px solid #989898;
}

#quick_contents .short_cut_down {background: #4189f3 url("/resources/temporary/img/common/icon/remote.png")      no-repeat 8px 50%;}
#quick_contents .reporter_down  {background: #4189f3 url("/resources/temporary/img/common/icon/hd_icon5_ss.png") no-repeat 8px 50%;}

#quick_contents .remote:first-child {background: #fd6777 url("/resources/temporary/img/common/icon/remote.png") no-repeat 8px 50%;}
#quick_contents .remote:last-child  {background: #f3a337 url("/resources/temporary/img/common/icon/remote.png") no-repeat 8px 50%;}

#quick_contents .single_menu &gt; a {
    display: block;
    float: left;
    height: 35px;
    width: 125px;
    padding-left: 30px;
    line-height: 35px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

#quick_contents .single_menu &gt; a:hover {
    text-decoration: underline;
}

#quick_contents h1 {
    width: 100%;
    height: 35px;
    line-height: 35px;
    background-color: #4189f3;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

#quick_contents ul li a {
    display: block;
    padding: 6px 0 6px 40px;
    border-bottom: 1px solid #212331;
    background-color: #404756;
    font-size: 12px;
    color: #fff;
    text-align: left;
    background-size: 18px 18px;
    cursor: pointer;
}

#quick_contents ul li a:hover {
    background-color: #262735;
}

.quick_icon1 {background: url(/resources/temporary/img/common/icon/icon_quick1.png) 15px 50% no-repeat;}
.quick_icon2 {background: url(/resources/temporary/img/common/icon/icon_quick2.png) 15px 50% no-repeat;}
.quick_icon3 {background: url(/resources/temporary/img/common/icon/icon_quick3.png) 15px 50% no-repeat;}
.quick_icon4 {background: url(/resources/temporary/img/common/icon/icon_quick4.png) 15px 50% no-repeat;}

#quick_contents .multi_menu {
    border-bottom: 1px solid #989898;
    background-color: #383a49;
}

#quick_contents .multi_menu h2 {
    text-align: center;
    padding: 6px 0;
    background-color: #4189f3;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0;
    cursor: pointer;
    user-select: none;
}

#quick_contents .multi_menu h2:hover {
    background-color: #126bef;
}

#quick_contents .call_center_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

#quick_contents #quick_clock {
    background-color: #404756;
    line-height: 14px;
    padding: 5px 0;
    border-radius: 0 0 10px 10px;
}

#quick_contents #quick_clock &gt; div {
    font-size: 12px;
    color: #fff;
    text-align: center;
}

/*-------------------------------border-effect-btn ---------------------*/

.border_effect_btn {
    width: 120px;
    height: 33px;
    margin-right: 10px;
    background: url(/resources/temporary/img/common/btn/btn.png) no-repeat;
}

.border_effect_btn:hover {
    background: url(/resources/temporary/img/common/btn/btn_hover.png) no-repeat;
}

/* -------------------------------------------------------------------- */</pre></body></html>