@charset "utf-8";
/* ==================================================================================
    [common.css]
        - font import
        - common style
        - init style
        - layout style : default(sub), main
================================================================================== */

/* ----------------------------------------------------------------------------------
    Noto Sans KR
---------------------------------------------------------------------------------- */
/*@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);*/
@import url('//fonts.googleapis.com/css?family=Roboto:400,500,700');

/* ----------------------------------------------------------------------------------
    style : temporary
---------------------------------------------------------------------------------- */
.mobile-nav {
    display: none !important;
}

/* ----------------------------------------------------------------------------------
    common style
---------------------------------------------------------------------------------- */
/* placeholder */
::-webkit-input-placeholder { color:#999 !important; }
::-moz-placeholder { color:#999 !important; } /* FF 19+ */
:-moz-placeholder { color:#999 !important; } /* FF 18- */
:-ms-input-placeholder { color:#999 !important; }
.placeholder { color:#999 !important; } /* for the polyfill */

/* clearfix class */
.clearfix:after {
    clear: both !important;;
    content: "." !important;;
    display: block !important;;
    height: 0 !important;;
    visibility: hidden !important;;
}
.clearfix {
    display: inline-block !important;;
}
.clearfix {
    display: block !important;;
}

/* word ellipsis */
.ellipsis {
    width: 100%;
    text-overflow: ellipsis !important;;
    white-space: nowrap !important;;
    overflow: hidden !important;;
}

/*highlight-color*/
.highlight-pink {
    color: #fd367e;
}
.highlight-blue {
    color: #0091EA;
}

/* white-space */
.ws-normal { white-space: normal !important }

/* display */
.element-inline {
    display: inline-block !important;
    width: auto !important;
    vertical-align: middle !important;
}

/* display style */
.dp-block { display: block !important; }
.dp-inline { display: inline !important; }
.dp-none { display: none !important; }
.dp-inline-block { display: inline-block !important; }

/* position style */
.pos-static { position: static !important; }
.pos-relative { position: relative !important; }
.pos-absolute { position: absolute !important; }
.pos-fixed { position: fixed !important; }

/* table style */
.tb-layout-fixed { table-layout: fixed !important; }
.tb-layout-auto { table-layout: auto !important; }

/* align style */
.ta-center { text-align: center !important; }
.ta-left { text-align: left !important; }
.ta-right { text-align: right !important; }

.va-top { vertical-align: top !important; }
.va-middle { vertical-align: middle !important; }
.va-bottom { vertical-align: bottom !important; }
.va-baseline { vertical-align: baseline !important; }

/* border style */
.bd-0 { border-width: 0 !important; }
.bd-l0 { border-right: 0 !important; }
.bd-t0 { border-top: 0 !important; }
.bd-b0 { border-bottom: 0 !important; }
.bd-r0 { border-right: 0 !important; }

/* letter-spacing style */
.ls-25 { letter-spacing: -0.25px !important; }
.ls-75 { letter-spacing: -0.75px !important; }

/* gradient style */
.gradient-gray {
    background: #fefefe; /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ5JSIgc3RvcC1jb2xvcj0iI2ZiZmJmYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZmVmZWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,  #fefefe 0%, #fbfbfb 49%, #efefef 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(49%,#fbfbfb), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #fefefe 0%,#fbfbfb 49%,#efefef 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #fefefe 0%,#fbfbfb 49%,#efefef 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #fefefe 0%,#fbfbfb 49%,#efefef 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #fefefe 0%,#fbfbfb 49%,#efefef 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#efefef',GradientType=0 ); /* IE6-8 */
}

/* margin */
.mg-0 { margin: 0 !important; }

.mg-l0 { margin-left: 0 !important; }
.mg-t0 { margin-top: 0 !important; }
.mg-r0 { margin-right: 0 !important; }
.mg-b0 { margin-bottom: 0 !important; }

.mg-l5 { margin-left: 5px !important; }
.mg-t5 { margin-top: 5px !important; }
.mg-r5 { margin-right: 5px !important; }
.mg-b5 { margin-bottom: 5px !important; }

.mg-l10 { margin-left: 10px !important; }
.mg-t10 { margin-top: 10px !important; }
.mg-r10 { margin-right: 10px !important; }
.mg-b10 { margin-bottom: 10px !important; }

.mg-l15 { margin-left: 15px !important; }
.mg-t15 { margin-top: 15px !important; }
.mg-r15 { margin-right: 15px !important; }
.mg-b15 { margin-bottom: 15px !important; }

.mg-l20 { margin-left: 20px !important; }
.mg-t20 { margin-top: 20px !important; }
.mg-r20 { margin-right: 20px !important; }
.mg-b20 { margin-bottom: 20px !important; }

.mg-l25 { margin-left: 25px !important; }
.mg-t25 { margin-top: 25px !important; }
.mg-r25 { margin-right: 25px !important; }
.mg-b25 { margin-bottom: 25px !important; }

.mg-l30 { margin-left: 30px !important; }
.mg-t30 { margin-top: 30px !important; }
.mg-r30 { margin-right: 30px !important; }
.mg-b30 { margin-bottom: 30px !important; }

.mg-l35 { margin-left: 35px !important; }
.mg-t35 { margin-top: 35px !important; }
.mg-r35 { margin-right: 35px !important; }
.mg-b35 { margin-bottom: 35px !important; }

.mg-l40 { margin-left: 40px !important; }
.mg-t40 { margin-top: 40px !important; }
.mg-r40 { margin-right: 40px !important; }
.mg-b40 { margin-bottom: 40px !important; }

.mg-l45 { margin-left: 45px !important; }
.mg-t45 { margin-top: 45px !important; }
.mg-r45 { margin-right: 45px !important; }
.mg-b45 { margin-bottom: 45px !important; }

.mg-l50 { margin-left: 50px !important; }
.mg-t50 { margin-top: 50px !important; }
.mg-r50 { margin-right: 50px !important; }
.mg-b50 { margin-bottom: 50px !important; }

/* padding */
.pd-0 { padding: 0 !important; }

.pd-l0 { padding-left: 0 !important; }
.pd-t0 { padding-top: 0 !important; }
.pd-r0 { padding-right: 0 !important; }
.pd-b0 { padding-bottom: 0 !important; }

.pd-l5 { padding-left: 5px !important; }
.pd-t5 { padding-left: 5px !important; }
.pd-r5 { padding-left: 5px !important; }
.pd-b5 { padding-left: 5px !important; }

.pd-l10 { padding-left: 10px !important; }
.pd-t10 { padding-top: 10px !important; }
.pd-r10 { padding-right: 10px !important; }
.pd-b10 { padding-bottom: 10px !important; }

.pd-l15 { padding-left: 15px !important; }
.pd-t15 { padding-top: 15px !important; }
.pd-r15 { padding-right: 15px !important; }
.pd-b15 { padding-bottom: 15px !important; }

.pd-l20 { padding-left: 20px !important; }
.pd-t20 { padding-top: 20px !important; }
.pd-r20 { padding-right: 20px !important; }
.pd-b20 { padding-bottom: 20px !important; }

.pd-l25 { padding-left: 25px !important; }
.pd-t25 { padding-top: 25px !important; }
.pd-r25 { padding-right: 25px !important; }
.pd-b25 { padding-bottom: 25px !important; }

.pd-l30 { padding-left: 30px !important; }
.pd-t30 { padding-top: 30px !important; }
.pd-r30 { padding-right: 30px !important; }
.pd-b30 { padding-bottom: 30px !important; }

.pd-l35 { padding-left: 35px !important; }
.pd-t35 { padding-top: 35px !important; }
.pd-r35 { padding-right: 35px !important; }
.pd-b35 { padding-bottom: 35px !important; }

.pd-l40 { padding-left: 40px !important; }
.pd-t40 { padding-top: 40px !important; }
.pd-r40 { padding-right: 40px !important; }
.pd-b40 { padding-bottom: 40px !important; }

.pd-l45 { padding-left: 45px !important; }
.pd-t45 { padding-top: 45px !important; }
.pd-r45 { padding-right: 45px !important; }
.pd-b45 { padding-bottom: 45px !important; }

.pd-l50 { padding-left: 50px !important; }
.pd-t50 { padding-top: 50px !important; }
.pd-r50 { padding-right: 50px !important; }
.pd-b50 { padding-bottom: 50px !important; }

/* width style */
.wauto { width: auto !important; }
.w5 { width: 5% !important; }
.w10 { width: 10% !important; }
.w15 { width: 15% !important; }
.w20 { width: 20% !important; }
.w25 { width: 25% !important; }
.w30 { width: 30% !important; }
.w35 { width: 35% !important; }
.w40 { width: 40% !important; }
.w45 { width: 45% !important; }
.w50 { width: 50% !important; }
.w55 { width: 55% !important; }
.w60 { width: 60% !important; }
.w65 { width: 65% !important; }
.w70 { width: 70% !important; }
.w75 { width: 75% !important; }
.w80 { width: 80% !important; }
.w85 { width: 85% !important; }
.w90 { width: 90% !important; }
.w95 { width: 95% !important; }
.w100 { width: 100% !important; }

/* ----------------------------------------------------------------------------------
    help-block style
---------------------------------------------------------------------------------- */
/*.control-group.error {*/

/*}*/
/*.help-block {*/
/*display: none;*/
/*margin-top: 5px;*/
/*color: #ff5555;*/
/*}*/
/*.control-group.error .help-block {*/
/*display: block;*/
/*}*/
/*.control-group.error input[type=text],*/
/*.control-group.error input[type=password] {*/
/*border-color: #ff5555;*/
/*}*/

/* ----------------------------------------------------------------------------------
    init style
---------------------------------------------------------------------------------- */
/* *******************************************************************
	http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
******************************************************************* */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
    /*fieldset, form, label, legend,*/
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

ol, ul {
    list-style: none;
}

strong {
    font-weight: bold;
}

hr {
    margin: 0;
    padding: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    border: 0;
    visibility: hidden;
}

a {
    color: #1179f0;
    text-decoration: none !important;

    -ms-transition: color 0.25s, background-color 0.25s;
    -moz-transition: color 0.25s, background-color 0.25s;
    -webkit-transition: color 0.25s, background-color 0.25s;
    -o-transition: color 0.25s, background-color 0.25s;
    transition: color 0.25s, background-color 0.25s;
}

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

/* ----------------------------------------------------------------------------------
    layout style : default(sub)
---------------------------------------------------------------------------------- */
body {
    font-family: 'Roboto', '맑은 고딕', 'Malgun Gothic', 'Nanum Gothic', Dotum, Gulim, sans-serif;
    font-size: 15px;
    color: #35404f;
    line-height: 1.5em;
}

/* #wrap */
#wrap {
    /*min-width: 1280px;*/
    /*background: #000 url(../images/bg/bg_subpage.jpg) center top no-repeat;*/
}
/* inner layout box */
#wrap .inner-wrap {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

/* #wrap.main */
#wrap.main {
    /*background: #000 url(../images/bg/bg_mainpage.jpg) center top no-repeat;*/
}

/* *******************************************************************
	#header
******************************************************************* */

/*.inner-wrap {*/
/*position: relative;*/
/*height: 850px;*/
/*}*/

/* utility-area */

/*.utility-area {*/
/*height: 36px;*/
/*line-height: 36px;*/
/*background-color: #fafafa;*/
/*border-bottom: 1px solid #eee;*/
/*}*/
/*.utility-area .top-logo {*/
/*float: left;*/
/*}*/
/*.utility-area .top-logo li {*/
/*float: none;*/
/*display: inline-block;*/
/*margin-right: 20px;*/
/*opacity: 0.5;*/
/*}*/
/*.utility-area .top-logo li img {*/
/*display: inline-block;*/
/*vertical-align: middle;*/
/*height: 20px;*/
/*}*/
.utility-area ul {
    float: right;
}
.utility-area ul li {
    line-height: 32px;
    float: left;
}
.utility-area ul li a {
    display: inline-block;
    padding: 0 18px;
    font-size: 12px;
    color: #767676;
    background: url("/images/header/m_divide.jpg") no-repeat right center;
}
.utility-area ul li a:hover {
    color: #0e74b7;
}
.utility-area ul li:last-child a {
    background: none;
}

/* logo-area */
/*.logo-area {*/
/*width: 100%;*/
/*height: 70px;*/
/*text-align: center;*/
/*border-right: 1px solid #eee;*/
/*background-color: #fff;*/
/*}*/
/*.logo-area h1 {*/
/*line-height: 70px;*/
/*}*/
/*.logo-area img {*/
/*display: inline-block;*/
/*max-width: 100%;*/
/*}*/

/* usre-area */
.usre-area {
    position: relative;
    width: 100%;
    height: 80px;
}

/* btn-connect */
.btn-connect {
    width: 100%;
    height: 50px;
}
/* login */
.btn-connect.login li {
    float: left;
    width: 50%;
}
.btn-connect.login li a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 13px;
    color: #eee;
    border-right: 1px solid #565656;
    background-color: #424242;
}
.btn-connect.login li:last-child a {
    border-right: 0;
    border-left: 1px solid #323232;
}
.btn-connect.login li a:hover {
    color: #fff;
    background-color: #fe7941;
}
.btn-connect.login li a i {
    margin: 0 5px 0 0;
}

/* logout */
.btn-connect.logout li {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 0 0 30px;
    line-height: 50px;
    text-align: left;
    font-size: 13px;
    color: #fff;
    border-right: 0;
    background-color: #424242;
}
.btn-connect.logout li b {
    color: #fff;
}
.btn-connect.logout li a {
    font-size: 10px;
    color: #e0effc;
}
.btn-connect.logout li a:hover {
    color: #fff;
}
.btn-connect.logout li i {
    margin: 0 5px 0 0;
}

/* btn-etc */
.btn-etc {
    width: 100%;
    height: 30px;
}
.btn-etc li {
    float: left;
    width: 33%;
}
.btn-etc li:last-child {
    float: left;
    width: 34%;
}
.btn-etc li a {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 11px;
    color: #ffe4d9;
    border-left: 1px solid #fe5912;
    border-right: 1px solid #fe7c45;
    background-color: #fe7941;
}
.btn-etc li:first-child a {
    border-left: 0;
}
.btn-etc li:last-child a {
    border-right: 0;
}
.btn-etc li a:hover {
    color: #fff;
    background-color: #fd367e;
}

/*
gnb
*/
.gnb-area {
    position: relative;
    width: 100%;
    height: 110px;
    /*border-bottom: 1px solid #0072bb;*/
    transition: border 0.25s;
    background-color: #fff;
}
.gnb-area.active {
    border-bottom: 3px solid #051a32;
}
.gnb-bg {
    position: absolute;
    left: 0;
    top: 109px;
    width: 100%;
    height: 0;
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    z-index: 101;

    -ms-transition: height 0.25s;
    -moz-transition: height 0.25s;
    -webkit-transition: height 0.25s;
    -o-transition: height 0.25s;
    transition: height 0.25s;
}
.gnb-area .innerwrap{
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

/* logo */
.logo {
    position: relative;
    float: left;
}
.logo a {
    display: inline-block;
    /*width: 300px;*/
    /*height: 100px;*/
    /*padding-top: 12px;*/
    line-height: 1.1;
    font-size: 32px;
    font-weight: 700;
    color: #0072bb !important;
    vertical-align: middle;
}
/*.logo a img {*/
/*!*width: 170px;*!*/
/*!*max-width: 100%;*!*/
/*vertical-align: middle;*/
/*!*width: 60px;*!*/
/*}*/
.logo a span.title1 {
    display: block;
    margin: 0 0 3px;
    font-size: 9px;
    font-weight: 400;
    color: #333;
}
.logo a span.title2 {
    display: block;
    margin: 0 0 3px;
    font-size: 32px;
    font-weight: 700;
}
.logo a span.title3 {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #999;
}

/*gnb*/
.gnb {
    position: absolute;
    right: 0;
    top: 0;
}
/* depth1 menu */
.gnb .depth1 {
    padding: 0;
}
.gnb .depth1 li {
    position: relative;
    top: 0;
    float: left;
    width: auto;
    margin: 0;
    padding: 0;
    /*padding: 0 15px;*/
}
.gnb .depth1 li:last-child {
    margin-right: 0;
}
.gnb .depth1 li.gnbmain01 {
    width: 96px;
}
.gnb .depth1 li.gnbmain02 {
    width: 86px;
}
.gnb .depth1 li.gnbmain03 {
    width: 96px;
}
.gnb .depth1 li.gnbmain04 {
    width: 96px;
}
.gnb .depth1 li.gnbmain05 {
    width: 96px;
}
.gnb .depth1 li.gnbmain06 {
    width: 130px;
}
.gnb .depth1 li.gnbmain07 {
    width: 96px;
}
.gnb .depth1 li.gnbmain08 {
    width: 110px;
}
.gnb .depth1 li.gnbmain09 {
    width: 100px;
}
.gnb .depth1 > li > a {
    position: relative;
    display: block;
    height: 110px;
    /*line-height: 110px;*/
    padding: 25px 0 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.45px;
    text-align: center;
    text-decoration: none;
    outline: none;
    transition: all 0.25s;
}
.gnb .depth1 > li.gnbmain09 > a {
    color: #f55;
}
.gnb .depth1 li a:hover,
.gnb .depth1 li> a.active  {
    /*font-weight: 700;*/
    color: #0091ea;
}
.gnb .depth1 > li.gnbmain09 > a:hover {
    color: #f33;
}
.gnb .depth1 li .gnb-bar {
    display: none;
    position: absolute;
    top: 110px;
    left: 0;
    /*display: block;*/
    width: 100%;
    padding: 0;
    z-index: 1000;
}
.gnb .depth1 li .gnb-bar .bar {
    display: none;
    width: 0;
    height: 3px;
    background-color: #051a32;

    -ms-transition: width 0.25s;
    -moz-transition: width 0.25s;
    -webkit-transition: width 0.25s;
    -o-transition: width 0.25s;
    transition: width 0.25s;
}

/* depth2 menu */
.gnb .depth1 li .depth2 {
    position: absolute;
    left: 50%;
    top: 109px;
    height: 0;
    overflow: hidden;
    border-right: 1px dashed #eee !important;
    background-color: #fff;
    z-index: 200;
    -ms-transition: height 0.25s;
    -moz-transition: height 0.25s;
    -webkit-transition: height 0.25s;
    -o-transition: height 0.25s;
    transition: height 0.25s;
    width: 100%;
}
.gnb .depth1 li .depth2 > li:first-child {
    padding-top: 10px;
}
.gnb .depth1 li .depth2.sub01 {
    width: 96px;
    margin-left: -48px;
    border-right: 0;
}
.gnb .depth1 li .depth2.sub02 {
    width: 86px;
    margin-left: -43px;
}
.gnb .depth1 li .depth2.sub03 {
    width: 96px;
    margin-left: -48px;
}
.gnb .depth1 li .depth2.sub04 {
    width: 96px;
    margin-left: -48px;
}
.gnb .depth1 li .depth2.sub05 {
    width: 96px;
    margin-left: -48px;
}
.gnb .depth1 li .depth2.sub06 {
    width: 130px;
    margin-left: -65px;
}
.gnb .depth1 li .depth2.sub07 {
    width: 96px;
    margin-left: -48px;
}
.gnb .depth1 li .depth2.sub08 {
    width: 110px;
    margin-left: -55px;
    border-right: 0;
}
.gnb .depth1 li .depth2.sub09 {
    width: 100px;
    margin-left: -50px;
    border-right: 0;
    background-color: #fff4f4;
}

.gnb .depth1 li .depth2 li {
    float: none;
    width: 100%;
    margin: 0;
    padding: 8px 0;
}
.gnb .depth1 li .depth2 li a {
    display: block;
    margin: 0;
    padding: 5px 3px;
    line-height: 1.2;
    font-size: 13px;
    font-weight: 400;
    color: #767676;
    text-align: center;
    text-decoration: none;
    letter-spacing: -0.25px;
    outline: none;
}
.gnb .depth1 li .depth2.sub09 li a {
    font-weight: bold;
    color: #000;
}
.gnb .depth1 li .depth2 li a.double{
    line-height: 1.2;
}
.gnb .depth1 li .depth2 li a:hover {
    color: #051a32;
    background-color: #fafafa;
}
.gnb .depth1 li .depth2.sub09 li a:hover {
    font-weight: bold;
    color: #f55;
    background-color: #ffe8e8;
}

/* nav */
/*#nav {*/
/*border-top: 1px solid #fe834e;*/
/*}*/
/*!* depth1 *!*/
/*#nav ul.depth1 {*/

/*}*/
/*#nav ul.depth1 > li {*/
/*position: relative;*/
/*}*/
/*#nav ul.depth1 > li > a {*/
/*position: relative;*/
/*display: block;*/
/*width: 100%;*/
/*height: 50px;*/
/*padding: 0 20px;*/
/*line-height: 50px;*/
/*color: #dfdfdf;*/
/*border-top: 1px solid #353535;*/
/*border-bottom: 1px solid #0f0f0f;*/
/*background-color: #1e1e1e;*/
/*transition: border 0.3s;*/
/*}*/
/*#nav ul.depth1 > li > a.active,*/
/*#nav ul.depth1 > li > a:hover {*/
/*color: #fff;*/
/*border-top: 1px solid #fe7941;*/
/*border-bottom: 1px solid #fe7941;*/
/*background-color: #fd367e;*/
/*}*/
/*#nav ul.depth1 > li > a > i {*/
/*position: absolute;*/
/*right: 10px;*/
/*top: 0;*/
/*font-size: 12px;*/
/*color: #ccc;*/
/*}*/
/*!* 메뉴명이 2줄일 경우 *!*/
/*#nav ul.depth1 > li > a.multi {*/
/*padding-top: 7px;*/
/*line-height: 18px;*/
/*font-size: 13px;*/
/*}*/
/*#nav ul.depth1 > li > a.multi > i {*/
/*top: 15px;*/
/*}*/

/*!* depth2 *!*/
/*#nav ul.depth2 {*/
/*display: none;*/
/*position: absolute;*/
/*right: -202px;*/
/*top: 0;*/
/*}*/
/*#nav ul.depth1 > li.active > ul.depth2,*/
/*#nav ul.depth1 > li:hover > ul.depth2 {*/
/*display: block;*/
/*height: auto;*/
/*}*/
/*#nav ul.depth2 > li {*/
/*position: relative;*/
/*padding: 0 1px;*/
/*background-color: transparent;*/
/*}*/
/*#nav ul.depth2 > li > a {*/
/*position: relative;*/
/*display: block;*/
/*width: 200px;*/
/*height: 40px;*/
/*padding: 0 10px;*/
/*line-height: 40px;*/
/*font-size: 13px;*/
/*color: #dfdfdf;*/
/*border-top: 1px solid #555;*/
/*border-bottom: 1px solid #353535;*/
/*background-color: #424242;*/
/*}*/
/*#nav ul.depth2 > li > a.active {*/
/*color: #fff;*/
/*background-color: #fe7941;*/
/*}*/
/*#nav ul.depth2 > li > a:hover {*/
/*color: #fff;*/
/*background-color: #fe7941;*/
/*}*/
/*#nav ul.depth2 > li > a > i {*/
/*position: absolute;*/
/*right: 10px;*/
/*top: 0;*/
/*font-size: 12px;*/
/*color: #ccc;*/
/*}*/

/*!* depth3 *!*/
/*#nav ul.depth3 {*/
/*display: none;*/
/*position: absolute;*/
/*right: -201px;*/
/*top: 0;*/
/*}*/
/*#nav ul.depth2 > li.active > ul.depth3,*/
/*#nav ul.depth2 > li:hover > ul.depth3 {*/
/*display: block;*/
/*height: auto;*/
/*}*/
/*#nav ul.depth3 > li {*/
/*position: relative;*/
/*padding: 0 1px;*/
/*background-color: transparent;*/
/*}*/
/*#nav ul.depth3 > li > a {*/
/*position: relative;*/
/*display: block;*/
/*width: 200px;*/
/*height: 40px;*/
/*padding: 0 10px;*/
/*line-height: 40px;*/
/*font-size: 13px;*/
/*color: #dfdfdf;*/
/*border-top: 1px solid #555;*/
/*border-bottom: 1px solid #353535;*/
/*background-color: #424242;*/
/*}*/
/*#nav ul.depth3 > li > a:hover {*/
/*color: #fff;*/
/*background-color: #1e1e1e;*/
/*}*/



/* *******************************************************************
	#container
******************************************************************* */
#container {
    position: relative;
    width: 100%;
}

/* .main #container */
.main #container {
    width: 100%;
    margin-left: 0;
}

/* *******************************************************************
	banner-area
******************************************************************* */
.banner-area {
    /*display: none !important; !* 임시 - 차후 삭제 *!*/
    /*background-color: #1e1e1e;*/
    border-top: 1px solid #eee;
    background-color: #f7f7f7;
}
.banner-area .inner-wrap {
    position: relative;
    height: 100px;
}
.banner-area .inner-wrap h2.title-sponsor {
    float: left;
    width: 240px;
    text-align: right;
    height: 100px;
    line-height: 100px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* endorsed-list */
.endorsed-list {
    text-align: left;
}
.endorsed-list h4 {
    margin: 0 0 20px;
}
.endorsed-list a {
    display: inline-block;
    margin: 0 30px 20px 0;
    vertical-align: middle;
}

/* sponsor-list */
.sponsor-list {
    text-align: left;
}
.sponsor-list h4 {
    margin: 0 0 20px;
}
.sponsor-list h5 {
    font-size: 17px;
    font-weight: bold;
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 3px solid #eee;
}
.sponsor-list .diamond {
    display: inline-block;
    vertical-align: top;
    margin-right: 60px;
}
.sponsor-list .diamond h5 {
    color: #3a99ea;
    border-color: #3a99ea;
}
.sponsor-list .gold {
    display: inline-block;
    vertical-align: top;
    margin-right: 60px;
}
.sponsor-list .gold h5 {
    color: #c98910;
    border-color: #c98910;
}
.sponsor-list .silver {
    display: inline-block;
    vertical-align: top;
}
.sponsor-list .silver h5 {
    color: #a8a8a8;
    border-color: #a8a8a8;
}
.sponsor-list .bronze {
    display: inline-block;

}
.sponsor-list .bronze h5 {
    color: #965a38;
    border-color: #965a38;
}
.sponsor-list > div > a {
    display: inline-block;
    margin: 0 40px 10px 0;
    vertical-align: middle;
}
.sponsor-list > div.bronze > a {
    /*height: 80%;*/
    margin: 0 53px 10px 0;
}
/*.sponsor-list > div.bronze > a img {*/
/*    width: 86%;*/
/*}*/
.sponsor-list > div > a:last-child {
    margin: 0 0 10px 0;
}
.sponsor-list > p {
    font-size: 12px;
}
.sponsor-list > p > a {
    text-decoration: underline !important;
}


/* sponsor-list */
/*.banner-area .inner-wrap .sponsor-list {*/
/*    visibility: hidden;*/
/*    !*float: left;*!*/
/*    width: 1080px;*/
/*    height: 100px;*/
/*    margin: 0 auto;*/
/*    !*margin-left: 80px;*!*/
/*    padding: 20px 0;*/
/*}*/
/*.banner-area .inner-wrap .sponsor-list .sponsor-slide {*/

/*}*/
/*.banner-area .inner-wrap .sponsor-list .bx-wrapper {*/
/*    max-width: 1080px !important;*/
/*}*/
/*.banner-area .inner-wrap .sponsor-list .sponsor-slide li {*/
/*    float: left;*/
/*    width: 200px;*/
/*    margin-right: 25px;*/
/*}*/
/*.banner-area .inner-wrap .sponsor-list .sponsor-slide li a {*/
/*    display: block;*/
/*    width: 200px;*/
/*    height: 60px;*/
/*    line-height: 60px;*/
/*    text-align: center;*/
/*    font-size: 18px;*/
/*    color: #ccc;*/
/*    background-color: #fff;*/
/*}*/
/*.banner-area .bx-wrapper .bx-prev {*/
/*    left: -50px;*/
/*    !*background: url('/images/main/arrow_left.png') no-repeat 0 -32px;*!*/
/*    background: url('/images/main/arrow_left.png') no-repeat 0;*/
/*}*/

/*.bx-wrapper .bx-next {*/
/*    right: -60px;*/
/*    !*background: url('/images/main/arrow_right.png') no-repeat -43px -32px;*!*/
/*    background: url('/images/main/arrow_right.png') no-repeat 0;*/
/*}*/
/*.bx-wrapper .bx-next:hover, .bx-wrapper .bx-next:focus {*/
/*    background-position: 0;*/
/*}*/

/* *******************************************************************
    .organized-by
******************************************************************* */





/*organized-by*/
/*.organized-by {*/
/*border-top: 1px solid #eee;*/
/*text-align: right;*/
/*padding: 5px 0;*/
/*}*/
/*.organized-by h3 {*/
/*display: inline-block;*/
/*vertical-align: middle;*/
/*font-size: 17px;*/
/*color: #828282;*/
/*!*font-weight: 700;*!*/
/*}*/
/*.organized-by ul {*/
/*padding-left: 15px;*/
/*vertical-align: middle;*/
/*display: inline-block;*/
/*font-size: 0;*/
/*line-height: 1;*/
/*}*/
/*.organized-by ul li {*/
/*display: inline-block;*/
/*font-size: 0;*/
/*line-height: 1;*/
/*}*/
/*.organized-by ul li a {*/
/*display: inline-block;*/
/*font-size: 0;*/
/*line-height: 1;*/
/*}*/
/*.organized-by ul li img {*/
/*height: 45px;*/
/*}*/

/* *******************************************************************
	kofst-info
******************************************************************* */
.kofst-info {
    margin: -30px 0 30px;
    padding: 20px 0;
    background-color: rgba(0,0,0,0.1);
}
.kofst-info ul {

}
.kofst-info ul li {
    margin: 5px 0;
}
.kofst-info ul li i {
    margin: 0 7px 0 0;
}

/* *******************************************************************
	#footer
******************************************************************* */
#footer {
    border-top: 1px solid #eee;
    /*margin-top: 50px; !* 임시 - 차후 삭제 *!*/
    padding: 30px 0 100px;
    background-color: #fafafa;
    /*background-color: #fff;*/
}
.main #footer { /* 임시 - 차후 삭제 */
    margin-top: 0;
}
#footer .inner-wrap {
    position: relative;
}

/* footer-logo */
.footer-logo {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #767676;
    position: absolute;
    left: 0;
    top: 0;
}
.footer-logo img {
    vertical-align: middle;
}
.footer-logo span.title1 {
    display: block;
    margin: 0 0 5px;
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    color: #868686;
    /*color: #666;*/
}
.footer-logo span.title2 {
    display: block;
    margin: 0 0 3px;
    line-height: 1.1;
    font-size: 25px;
    font-weight: 700;
    color: #828282;
    /*color: #767676;*/
}
.footer-logo span.title3 {
    display: block;
    line-height: 1.1;
    font-size: 23px;
    font-weight: 700;
    color: #666;
}

/* address */
address {
    margin: 0 0 10px;
    padding: 0 0 0 300px;
}
address p.title {
    padding-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #a5a5a5;
}
address p {
    font-size: 14px;
    font-weight: 400;
    color: #adacac;
    /*color: #8c8c8c;*/
}

/* copyright */
.copyright {
    padding-left: 300px;
    font-size: 14px;
    color: #adacac;
    /*color: #767676;*/
}
.main .copyright {
    padding-left: 370px;
    font-size: 14px;
    color: #adacac;
    /*color: #767676;*/
}
.copyright b {
    font-weight: 400;
    color: #0091EA;
}

/*.other-logos*/
.other-logos {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #767676;
    position: absolute;
    right: 0;
    top: 0;
}
.other-logos img {
    display: inline-block;
    vertical-align: middle;
}
.other-logos span {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    color: #a5a5a5;
}

/*footer-organized*/
/*.organized-by {*/
/*position: absolute;*/
/*top: 65px;*/
/*right: 0;*/
/*text-align: right;*/
/*padding: 5px 0;*/
/*}*/
/*.organized-by h3 {*/
/*!*display: none;*!*/
/*display: inline-block;*/
/*vertical-align: bottom;*/
/*font-size: 14px;*/
/*font-weight: 400;*/
/*color: #adacac;*/
/*!*font-size: 17px;*!*/
/*!*color: #a5a5a5;*!*/
/*!*font-weight: 700;*!*/
/*}*/
/*.organized-by ul {*/
/*padding-left: 15px;*/
/*vertical-align: bottom;*/
/*display: inline-block;*/
/*font-size: 0;*/
/*line-height: 1;*/
/*}*/
/*.organized-by ul li {*/
/*display: inline-block;*/
/*font-size: 0;*/
/*line-height: 1;*/
/*}*/
/*.organized-by ul li a {*/
/*display: inline-block;*/
/*font-size: 0;*/
/*line-height: 1;*/
/*}*/
/*.organized-by ul li img {*/
/*height: 45px;*/
/*}*/
