<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*-------------------------------------------------
Author : JMKIM
Create date : 2017. 02. 08.

2018-06-15 siin
2019-01-15 jmsong
-------------------------------------------------*/

.snavigation {
  background: #1e274e;
  height: 74px;
  padding: 9px 0;
}
.snavigation .select-menu {
  float: left;
  width: 177px;
  height: 53px;
  padding: 0 10px;
  margin-right: 10px;
  position: relative;
}
.snavigation .select-menu:after {
  position: absolute;
  top: 20px;
  right: -6px;
  background: #4b5271;
  width: 1px;
  height: 12px;
  content: '';
}
.snavigation .select-menu button {
  font-size: 1.467em;
  color: #fff;
  outline: 0;
  cursor: pointer;
  padding: 9px 0;
  letter-spacing: -0.05em;
  background: url(/korean/img/sub/i_select_arr.png) right center / 15px 8px no-repeat;
  padding-right: 30px;
  width: 100%;
  text-align: left;
}

.snavigation .select-menu .option {
  border: 1px solid #1f2c46;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.snavigation .select-menu .option.active {
  opacity: 1;
  z-index: 20;
  visibility: visible;
}
.snavigation .select-menu .option &gt; li {
}
.snavigation .select-menu .option &gt; li &gt; a {
  display: block;
  padding: 11px 20px;
}
.snavigation .select-menu .option &gt; li &gt; a:hover {
  background: #115fad;
  color: #fff;
}

.snavigation .select-menu2 {
  vertical-align: middle;
  display: table-cell;
  width: calc(100% - 187px);
  height: 53px;
  padding: 0 10px;
  overflow: hidden;
}
.snavigation .select-menu2 button {
  color: #115fad;
  outline: 0;
  cursor: pointer;
  padding: 13px 0;
  letter-spacing: -0.05em;
  background: url(/korean/img/sub/i_select_arr2.png) right center / 15px 8px no-repeat;
  padding-right: 30px;
  display: none;
  width: 100%;
  text-align: left;
}

.snavigation .menu-list {
  overflow: hidden;
  width: 100%;
}
.snavigation .menu-list &gt; li {
  float: left;
}
.snavigation .menu-list &gt; li &gt; a {
  color: #afb8e2;
  font-size: 0.933em;
  padding: 6px 4px;
  vertical-align: middle;
  display: inline-block;
  letter-spacing: -0.05em;
}
.snavigation .menu-list &gt; li &gt; a:hover,
.snavigation .menu-list &gt; li.active &gt; a {
  color: #115fad;
}

.navi {
}
.navi.border {
  border-bottom: 1px solid #d6d5d5;
}
.navi .container {
  position: relative;
  padding: 25px 0;
}
.navi .container h1 {
  font-size: 2em;
  text-align: center;
  color: #1e274e;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.navi .container .scale {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -11px;
}
.navi .container .scale a {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 22px;
  height: 22px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  margin-right: 4px;
}
.navi .container .scale a.plus {
  background-image: url(/korean/img/common/btn_plus.png);
}
.navi .container .scale a.minus {
  background-image: url(/korean/img/common/btn_minus.png);
}
.navi .container .btn {
  position: absolute;
  top: 50%;
  right: 100px;
  margin-top: -15px;
  background: #115fad;
  color: #fff;
  border-color: #115fad;
}

.search-area {
  /* background: url(/korean/img/sub/bg_pt.gif) 0 0 repeat; */
  padding: 17px 0;
}
.search-area .container {
  text-align: right;
}
.btn.search {
  background: #333;
  border-color: #333;
  color: #fff;
}
.btn.search span {
  /* display: inline-block; */
  display: block;
  /* padding-left: 25px; */
  /* background: url(/korean/img/sub/i_search.gif) 0 1px no-repeat; */
}
.search-area + .container {
  margin-top: 30px;
}

.top {
  position: absolute;
  right: 50%;
  margin-right: -500px;
  bottom: 166px;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 1;
  z-index: 99;
}
.top a {
  display: block;
  background-color: #fff;
  width: 55px;
  height: 55px;
  overflow: hidden;
  text-transform: uppercase;
  color: #333;
  font-size: 14px;
  text-align: center;
  padding-top: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top a:before {
  content: '';
  background: url('/korean/img/sub/top_arrow.png') no-repeat 0 0;
  display: block;
  width: 18px;
  height: 18px;
  margin: 0px auto 5px;
}
.top a span {
  -webkit-transition: transform 0.3s ease 0.2s;
  transition: transform 0.3s ease 0.2s;
}
.top a:hover {
  background-color: #2d2f33;
  color: #fff;
}
.top a:hover span {
  display: block;
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
}
.top a:hover:before {
  animation: topArrow 0.5s ease forwards;
}
hr.br {
  display: block;
  border-width: 0;
  margin: 0;
  padding: 0;
}

@keyframes topArrow {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(-50px);
  }
  52% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(20px);
  }
}

#content {
  padding: 0 0 50px;
}
.detail-content {
  position: relative;
  line-height: 28px;
}
.detail-content h2 {
  color: #115fad;
  font-size: 1.333em;
  margin-bottom: 10px;
  margin-top: 25px;
}
#content h2.big {
  font-size: 2em;
}

.detail-content h2.first {
  margin-top: 0;
}

.common-tab {
  display: table;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 0px;
}
.common-tab &gt; li {
  display: table-cell;
  width: 1%;
  vertical-align: middle;
  text-align: center;
  background: #e4e6f0;
  border-left: 1px solid #fff;
}
.common-tab &gt; li:first-child {
  border-left: 0;
}
.common-tab &gt; li &gt; a {
  color: #555;
  font-weight: 500;
  display: block;
  padding: 16px 10px;
  line-height: 18px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 16px;
}

.common-tab &gt; li &gt; a:hover,
.common-tab &gt; li.active &gt; a {
  background: #115fad;
  color: #fff !important;
}

.common-tab.type2 {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.common-tab.type2 &gt; li {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}
.common-tab.type2 &gt; li &gt; a {
  color: #fff;
}

.common-tab.type3 {
  border: 1px solid #d0d0d0;
}
.common-tab.type3 &gt; li {
  border-color: #d0d0d0;
  background: #fff;
}
.common-tab.type3 &gt; li &gt; a {
  color: #555;
  letter-spacing: -2px;
}
.common-tab.type3 &gt; li &gt; a:hover,
.common-tab.type3 &gt; li.active &gt; a {
  background: #115fad;
  color: #fff;
}

.table-wrap {
  overflow: hidden;
  margin: 20px 0;
}
.depart-area ~ .detail-content .table-wrap {
  margin-top: 40px;
}
.table-wrap + .end-btns {
  margin-top: 0;
}
.board-count {
  text-align: left;
  margin-bottom: 15px;
}
.table-wrap table {
  width: 100%;
  border-top: 3px solid #000;
  border-bottom: 1px solid #000;
  margin-left: -1px;
}
.table-wrap table thead th {
  border-bottom: 1px solid #dcdbdb;
  border-left: 1px solid #dcdbdb;

  color: #000;
  padding: 10px 15px;
}
.table-wrap table thead th strong {
  color: #115fad;
}
.table-wrap table tbody th,
.table-wrap table tbody td {
  border-bottom: 1px solid #dcdbdb;
  border-left: 1px solid #dcdbdb;

  color: #000;
  padding: 10px 15px;
}
.table-wrap table tbody th strong {
  color: #115fad;
}
.table-wrap table.big tbody th,
.table-wrap table.big tbody td {
  padding-left: 30px;
}

.board_pager {
  clear: both;
  margin-top: 30px;
  line-height: 35px;
  text-align: center;
}
.board_pager a {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #555;
  text-align: center;
  background: #f4f7fb;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.board_pager a img {
  display: none;
}
.board_pager a.start,
.board_pager a.end,
.board_pager a.prev,
.board_pager a.next {
  background: #fff url('/korean/img/sub/page_arrow.gif') no-repeat 0 0;
}
.board_pager a.prev {
  background-position: -35px 0;
}
.board_pager a.next {
  background-position: -70px 0;
}
.board_pager a.end {
  background-position: -105px 0;
}
.board_pager a:hover,
.board_pager a.active {
  background-color: #115fad;
  font-weight: 500;
  color: #fff;
}

.red {
  color: #3abde7;
  font-weight: 500;
}
.ellipsis {
  width: 100%;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
}
.attach {
  width: 23px;
  height: 22px;
  font-size: 0;
  line-height: 0;
  display: block;
  background: url(/korean/img/sub/i_down.gif) 0 0 no-repeat;
  margin: 0 auto;
}

/* #footer{background:#f6f7fd; text-align:center; height:140px;}
#footer .rule,
#footer .rule&gt;li{display:inline-block;}
#footer .rule{padding:25px 0;}
#footer .rule&gt;li{padding:0 10px; position:relative;}
#footer .rule&gt;li:after{position:absolute; top:2px; left:0; content:""; width:1px; height:12px; background:#d6d9e2;}
#footer .rule&gt;li:first-child:after{display:none;}
#footer .rule&gt;li strong{color:#115FAD;}
#footer .copyright{text-transform:uppercase; margin-top:5px;} */

.intro {
  /* background: url(/korean/img/sub/bg_pt.gif) 0 0 repeat; */
  /* min-height: 300px; */
}
.intro .container {
  padding-top: 30px;
}

/* 보고서 */
.report-area {
  width: 100%;
  background: url(/korean/img/sub/bg_report.jpg) no-repeat center top/cover;
  padding: 30px 0;
}
.report-area .container {
  width: 800px;
  position: relative;
}
.report-area .container .cts-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -18px;
  display: block;
  width: 38px;
  height: 38px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.report-area .container .cts-controls-direction .cts-prev {
  left: -100px;
  background-image: url(/korean/img/sub/btn_prev.gif);
}
.report-area .container .cts-controls-direction .cts-next {
  right: -100px;
  background-image: url(/korean/img/sub/btn_next.gif);
}

.report-list &gt; li {
  overflow: hidden;
  color: #fff;
}
.report-list &gt; li .figure {
  width: 155px;
  height: 212px;
  background: url(/korean/img/sub/bg_book.png) center center no-repeat #fff;
  float: left;
}
.report-list &gt; li .figure img {
  width: 100%;
  height: 100%;
}
.report-list &gt; li .figlist {
  width: calc(100% - 181px);
  float: left;
  padding: 0 0 0 56px;
}
.report-list &gt; li .figlist ul {
  width: 100%;
  margin-top: -10px;
}
.report-list &gt; li .figlist ul &gt; li {
  overflow: hidden;
  margin-top: 10px;
  line-height: 21px;
}
.report-list &gt; li .figlist ul &gt; li strong {
  float: left;
  width: 110px;
  color: #afb8e2;
  font-size: 1.067em;
}
.report-list &gt; li .figlist ul &gt; li span {
  float: left;
  width: calc(100% - 110px);
}
.report-list &gt; li .figlist ul &gt; li span em {
  color: #115fad;
}
.report-list &gt; li .figlist ul &gt; li a.file {
  color: #fff;
  /* height: 21px; */
  padding-left: 27px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.report-list &gt; li .figlist ul &gt; li a.file .fileSize {
    float: none;
    width: auto;
    margin: 0 6px;
}
.report-list &gt; li .figlist ul &gt; li a.file + a.file {
  margin-top: 10px;
}
.report-list &gt; li .figlist ul &gt; li a.file:hover {
  text-decoration: underline;
}
.report-list &gt; li .figlist ul &gt; li a.pdf {
  background-image: url(/korean/img/sub/i_pdf.png);
}

.end-btns {
  margin-top: 40px;
  padding: 24px 0;
  text-align: center;
}
.end-btns.border {
  border-top: 1px solid #c9ced3;
}
.end-btns .btn {
  min-width: 112px;
  background: #fff;
  border: 0;
  color: #1e274e;
  font-size: 0.933em;
}
.end-btns .btn.primary {
  background: #313963;
  color: #fff;
}
.end-btns .btn.green {
  color: #fff;
  border-color: #00918c;
  background: #00918c;
}
.end-btns .btn.btn-default {
  background: #878495;
  color: #fff;
}
.end-btns .btn.btn-default.primary {
  background: #115fad;
}
.end-btns .btn span {
  display: inline-block;
  padding-left: 25px;
  background: url(/korean/img/sub/bg_list.png) 0 3px no-repeat;
}

.hypen {
}
.hypen &gt; li,
p.hypen {
  position: relative;
  padding-left: 7px;
}
.hypen &gt; li:before,
p.hypen:before {
  position: absolute;
  top: 12px;
  left: 0;
  content: '';
  width: 4px;
  height: 1px;
  background: #666;
}

.ebook {
  position: relative;
  margin-top: 50px;
}
.ebook .bx-wrapper,
.ebook .bx-viewport {
  height: inherit !important;
}
.ebook .bx-pager {
  text-align: center;
}
.ebook .bx-pager .bx-pager-item {
  display: inline;
}
.ebook .bx-pager .bx-pager-item .bx-pager-link {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: #afb8e2;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 4px;
}
.ebook .bx-pager .bx-pager-item .bx-pager-link.active {
  background-color: #115fad;
}
.ebook .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -17px;
  display: block;
  width: 34px;
  height: 34px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.ebook .bx-prev {
  left: 0;
  background-image: url(/korean/img/sub/btn_prev.png);
}
.ebook .bx-next {
  right: 0;
  background-image: url(/korean/img/sub/btn_next.png);
}
.magazine-list {
  overflow: hidden;
  margin: 0 -1.5%;
  padding: 0 90px;
}
.magazine-list &gt; li {
  float: left;
  width: 20%;
  margin-bottom: 27px;
  position: relative;
  margin: 1.5% 2.5%;
}
.magazine-list &gt; li &gt; a {
  display: block;
  position: relative;
}
.magazine-list &gt; li &gt; a::after {
  display: block;
  clear: both;
  content: '';
}

.magazine-list &gt; li .figure {
  width: 100%;
  float: left;
  height: 0;
  padding-top: 132%;
  padding-bottom: 60px;
}

.magazine-list &gt; li .figure img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  box-shadow: 8px 8px 10px 1px rgb(0 0 0 / 5%);
  border: 1px solid #e3e3e3;
  /* min-height: 100%; */
  height: calc(100% - 50px);
}
.magazine-list &gt; li .figcaption {
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  width: 100%;
  top: calc(100% - 30px);
}
.magazine-list &gt; li .figcaption .title {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 300;
  text-align: center;
  z-index: -99;
  word-break: break-all;
}
.magazine-list &gt; li .figcaption .desc,
.magazine-list &gt; li .figcaption .date {
  display: none;
}
.magazine-list &gt; li a:hover .figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #115fad;
  display: block;
  text-align: center;
  color: #fff;
}
.magazine-list &gt; li a:hover .figcaption .title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin: 120px 10px 0;
  /* height: 115px; */
  overflow: hidden;
}
.magazine-list &gt; li a:hover .figcaption p.desc {
  display: none;
}
.magazine-list &gt; li a:hover .figcaption .date {
  font-size: 15px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 10px;
}
.magazine-list &gt; li.active {
  width: 40%;
}
.magazine-list &gt; li.active .figure {
  position: relative;
}
.magazine-list &gt; li.active .figure:after {
  content: '';
  width: calc(100% - 20px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 24px;
  border: 5px solid #115fad;
}
.magazine-list &gt; li.active a:hover .figcaption {
  position: relative;
  top: 0;
  left: 0;
  background: 0;
  display: block;
  float: right;
  width: calc(100% - 200px);
  padding-left: 30px;
  color: #fff;
  margin-top: 15px;
  text-align: left;
}
.magazine-list &gt; li.active a:hover .figcaption .title {
  font-size: 1.467em;
  font-weight: 500;
  height: inherit;
  margin: 0 0 15px 0;
}
.magazine-list &gt; li.active a:hover .figcaption p.desc {
  display: block;
}
.magazine-list &gt; li.active a:hover .figcaption .date {
  position: relative;
  top: 0;
  left: 0;
  margin-left: 0;
}
.magazine-list &gt; li.active .figcaption {
  display: block;
  float: right;
  width: calc(100% - 200px);
  padding-left: 30px;
  color: #fff;
  margin-top: 15px;
}
.magazine-list &gt; li.active .figcaption .title {
  font-size: 1.467em;
  font-weight: 500;
  margin-bottom: 15px;
}
.magazine-list &gt; li.active .figcaption .desc {
  line-height: 21px;
  font-size: 0.933em;
  opacity: 0.8;
  margin-bottom: 15px;
}

/* 대전세종포럼 */
.board tbody td.num-bold {
  font-size: 1.467em;
  color: #555;
  font-weight: 500;
}
.ebook-thumbnail {
  box-shadow: 0 1px 10px #bbb;
  margin: 15px 0;
}
.ebook-thumbnail img {
  width: 100%;
}
.description {
  position: relative;
}
.description .txts {
  width: 70%;
}
.description .txts .title {
  font-size: 1.467em;
  color: #424b7e;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.description .txts .title span {
  font-size: 0.636em;
  color: #555;
  padding-left: 10px;
}
.description .txts .desc {
  color: #000;
  font-weight: 400;
  letter-spacing: -0.05em;
}
.description .txts .common-list {
  color: #666;
  font-size: 0.867em;
  line-height: 20px;
  margin-top: 15px;
}
.description .txts .common-list &gt; li {
  position: relative;
  padding-left: 9px;
}
.description .txts .common-list &gt; li:after {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 2px;
  height: 2px;
  background: #3e4878;
}
.description .btns {
  position: absolute;
  bottom: 0;
  right: 0;
}
.description .btns .btn {
  color: #fff;
  background: #878495;
  border: 0;
}
.description .btns .btn.primary {
  background: #115fad;
}

span.look {
  display: block;
  text-align: right;
  margin-top: 8px;
}

/* 연구제안 */
.common-box {
  width: 100%;

  padding: 20px;
  background-repeat: no-repeat;
}
.common-box .common-list &gt; li {
  position: relative;
  padding-left: 9px;
  line-height: 22px;
}
.common-box .common-list &gt; li:after {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 2px;
  height: 2px;
  background: #3e4878;
}
.common-box.border {
  border: 1px solid #e4e6f0;
}
.common-box.bg {
  background-color: #e4e6f0;
}
.common-box.bg.proposal {
  background-image: url(/korean/img/sub/bg_proposal.gif);
  padding-left: 150px;
  background-position: 50px 25px;
}

.btn-half {
  overflow: hidden;
  margin: 1px 0 15px;
}
.btn-half .pull-left,
.btn-half .pull-right {
  width: 50%;
  text-align: center;
  margin-right: 0;
  margin-left: 0;
}
.btn-half .pull-left a,
.btn-half .pull-right a {
  display: inline-block;
  width: 100%;
  background: #00918c;
  color: #fff;
  padding: 10px 0;
}
.btn-half .pull-left a.primary {
  background: #115fad;
  border-right: 1px solid #fff;
}
.btn-half .pull-left p,
.btn-half .pull-right p {
  font-size: 0.867em;
  color: #555;
  letter-spacing: -0.05em;
}

.table-wrap table tbody td .secert {
  padding-right: 20px;
  background: url(/korean/img/sub/bg_lock.gif) right 5px no-repeat;
  display: inline-block;
}
.table-wrap table tbody td .reply {
  padding-left: 45px;
  background: url(/korean/img/sub/bg_re.gif) 0 0 no-repeat;
}

/* 원장실 - 인사말 */
#content &gt; .common-tab.type3 {
  margin-top: -30px;
}
.greeting {
  overflow: hidden;
}
.greeting .pull-left {
  width: 57%;
  /* width: 95%; */
}
.greeting .pull-left .slogan {
  font-size: 2.533em;
  color: #222;
  font-weight: 500;
  line-height: 54px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  position: relative;
  margin-top: 0;
  letter-spacing: -0.05em;
}
.greeting .pull-left p {
  margin-top: 30px;
}
.greeting .pull-left .slogan span {
  color: #115fad;
}
.greeting .pull-left .slogan:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 59px;
  height: 1px;
  background: #1e274e;
  content: '';
}
.greeting .pull-right {
  width: 40%;
  min-height: 450px;
  margin-bottom: 50px;
  margin-top: 30px;
  background: url(/korean/img/sub/img_greeting_2024.jpg) 0 0 no-repeat;
  position: relative;
}
.greeting .pull-right p {
  position: absolute;
  bottom: -40px;
  /* bottom: -70px; */
  right: 40px;
  /* right: 58px; */
  padding: 20px;
  background: #fff;
}

/* 원장실 - 약력 */
.greeting.profile {
  min-height: 650px;
}
.greeting.profile .pull-left strong {
  font-size: 2.533em;
  color: #115fad;
  font-weight: 500;
  float: left;
  padding-right: 100px;
  position: relative;
  width: 30%;
  padding-top: 6px;
}
.greeting.profile .pull-left strong:after {
  content: '';
  position: absolute;
  top: 12px;
  right: 20px;
  background: #1e274e;
  width: 59px;
  height: 1px;
}
.greeting.profile .pull-left ul {
  float: left;
  width: 70%;
}
.greeting.profile .pull-left ul &gt; li {
  line-height: 34px;
  color: #333;
}
.greeting.profile .pull-right {
  width: 40%;
  min-height: 493px;
  margin-bottom: 50px;
  background: url(/korean/img/sub/img_greeting.jpg) 0 0 no-repeat;
  position: relative;
}
.greeting.profile .pull-right p {
  position: absolute;
  bottom: -71px;
  right: 58px;
  padding: 20px;
  background: #fff;
}

/* 원장실 - 역대원장 */
.greeting.director {
  margin-top: -1.5%;
}
.history-director {
  overflow: hidden;
  margin: 0 -1.5%;
}
.history-director &gt; li {
  float: left;
  width: 47%;
  border: 1px solid #d0d0d0;
  margin: 1.5%;
}
.history-director &gt; li .figure {
  float: left;
  width: 168px;
}
.history-director &gt; li .figcaption {
  float: right;
  width: calc(100% - 168px);
  padding: 25px 20px;
}
.history-director &gt; li .figcaption .name {
  font-size: 1.667em;
  font-weight: 500;
  color: #333;
}
.history-director &gt; li .figcaption .name span {
  color: #115fad;
}
.history-director &gt; li .figcaption .during {
  color: #888;
}
.history-director &gt; li .figcaption ul {
  margin-top: 10px;
}
.history-director &gt; li .figcaption ul &gt; li {
  position: relative;
  padding-left: 9px;
  line-height: 22px;
}
.history-director &gt; li .figcaption ul &gt; li:after {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 2px;
  height: 2px;
  background: #3e4878;
}

/* 비전 및 경영목표 */
.table-wrap table.vert-top tbody td {
  vertical-align: top;
}
.square-title {
  border: 1px solid #115fad;
  color: #115fad;
  font-size: 1.733em;
  text-align: center;
  width: 126px;
  height: 126px;
  padding-top: 49px;
  letter-spacing: -0.05em;
  margin: 0 auto;
  font-weight: 500;
}
.table-wrap table tbody td .sub-title {
  font-size: 1.333em;
  font-weight: 500;
}

.common-list.dotted &gt; li {
  padding-left: 10px;
  position: relative;
}
.common-list.dotted &gt; li strong {
  color: #115fad;

  font-weight: 400;
  width: 130px;
  display: inline-block;
}
.common-list.dotted &gt; li strong.blue {
  color: #3abde7;
}
.common-list.dotted &gt; li strong.blue2 {
  color: #115fad;
}
.common-list.dotted &gt; li strong.black {
  color: #666;
  width: inherit;
}
.common-list.dotted &gt; li:after {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  background: #1e274e;
  width: 2px;
  height: 2px;
}

/* 설립목적 및 연혁 */
.history {
}
.thumbnail-area {
  color: #333;

  overflow: hidden;
  border-bottom: 1px solid #d6d5d5;
  padding-bottom: 29px;
  margin-bottom: 30px;
}
.thumbnail-area strong {
  color: #115fad;
  font-size: 1.444em;
  margin-bottom: 10px;
  display: block;
}
.history .timeline {
  overflow: hidden;
}
.history .square-title {
  float: left;
}
.history .year {
  float: left;
  margin-left: 85px;
}
.history .year &gt; li {
  overflow: hidden;
}
.history .year &gt; li strong {
  font-size: 1.6em;
  color: #333;
  float: left;
  margin-right: 34px;
  position: relative;
}
.history .year &gt; li strong:after {
  background: #115fad;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  content: '';
  position: absolute;
  top: 10px;
  right: -37px;
}

.history .year &gt; li ul {
  padding-left: 35px;
  float: left;
  border-left: 1px solid #dedede;
  padding-bottom: 20px;
}
.history .year &gt; li ul &gt; li .date {
  font-size: 0.933em;
  padding-right: 15px;
}

/* 윤리경영 - 고객헌장 */
.carta {
  overflow: hidden;
  margin-top: 60px;
}
.carta .title {
  font-size: 2.533em;
  color: #115fad;
  font-weight: 500;
  line-height: 40px;
  background: url(/korean/img/sub/bg_carta.jpg) 0 bottom no-repeat;
  padding-bottom: 250px;
}
.carta .mean {
  padding-left: 40px;
}
.carta .mean strong {
  font-size: 1.333em;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 40px;
  display: block;
  position: relative;
}
.carta .mean strong:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 59px;
  height: 1px;
  background: #000;
}
.carta .mean .small-txt {
  font-size: 0.933em;
  color: #666;
  overflow: hidden;
  margin: 0 -20px;
}
.carta .mean .small-txt &gt; div {
  padding: 0 20px;
}
.carta .mean .small-txt &gt; div p {
  margin-bottom: 20px;
}

/* 조직도 */

.img-responsive {
  max-width: 851px;
  margin: 0 auto;
  display: block;
  width: 100%;
}

/* 브로슈어 */
.brochure {
  position: relative;
  padding: 50px 80px;
  /* height: 350px; */
  /* margin-bottom: 150px; */
}
.brochure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  background: #f2f2f2;
}
.brochure:after {
  clear: both;
  display: block;
  content: '';
}
.brochure .figure.col-md-5 {
  width: 100%;
}
.brochure .figure .img-area {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}
.brochure .figure .img-area &gt; div {
  /* width: 50%; */
}
.brochure .figure .img-area &gt; div &gt; img {
  width: 353px;
  /* height: 325px; */
  margin-bottom: 20px;
  /* object-fit: cover; */
}
.brochure .figcaption {
  float: none;
  width: 768px;
  margin: 20px auto 0;
}
.brochure .figcaption .title {
  font-size: 2.38em;
  font-weight: 500;
  color: #222;
  letter-spacing: -0.075em;
  position: relative;
  line-height: 1.2em;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.brochure .figcaption .title strong {
  color: #115fad;
}
.brochure .figcaption .title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 59px;
  height: 1px;
  background: #000;
}
.brochure .figcaption .desc {
  font-size: 16px;
  font-weight: 300;
  color: #656565;
  line-height: 24px;
  margin-bottom: 40px;
}

@media (max-width: 1280px) {
  .brochure .figcaption {
    width: 100%;
  }
  .brochure .figcaption .title {
    font-size: 2.1em;
  }
  .brochure .figure .img-area {
    gap: 30px;
  }
}
@media (max-width: 1080px) {
  .brochure {
    padding: 50px 100px;
  }
}
@media (max-width: 767px) {
  .brochure {
    padding: 30px !important;
  }
  .brochure .figure {
    display: block !important;
  }
  .brochure .figure .img-area {
    gap: 20px;
  }
  .brochure hr.br {
    display: block;
    border-width: 0;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 480px) {
  /* .brochure .figure.col-md-5 {
    width: 80%;
  } */
  .brochure .figure .img-area {
    gap: 50px 0;
    align-items: center;
    flex-direction: column;
  }
  .brochure .figure .img-area &gt; div &gt; img {
    width: 100%;
  }
}

/* 찾아오시는길 */
.embed-container {
  position: relative;
  padding-bottom: 62.5%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  border: 1px solid #d8d7d7;
  margin-bottom: 35px;
}
.embed-container.rectangle {
  padding-bottom: 35%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 회원가입 */
.essential {
  position: relative;
  display: inline-block;
}
.essential:after {
  content: '*';
  position: absolute;
  top: 3px;
  left: -15px;
  color: #115fad;
  font-weight: 400;
}
.table-wrap table tbody td input[type='radio' i] {
  width: 20px;
  height: 20px;
}
.caution {
  color: #115fad;
  font-size: 14px;
  padding-left: 10px;
}

/* 로그인 */
.login {
  border-top: 3px solid #000;
  padding: 38px 60px;
  border-bottom: 1px solid #000;
  margin: 70px 0;
}
.login .title-box {
  border: 1px solid #115fad;
  width: 160px;
  height: 160px;
  font-size: 1.067em;
  text-align: center;
  padding: 50px 0;
}
.login .title-box.mail {
  background: url(/korean/img/sub/bg_mail.gif) center 60% no-repeat;
  padding: 25px 0;
  color: #333;
  font-weight: 500;
}
.mail-content {
  padding-top: 50px;
}
.login .title-box strong {
  display: block;
  font-size: 2em;
  color: #115fad;
}
.insert {
  width: 600px;
  margin: 0 auto;
}
.insert .title {
  text-align: center;
  color: #333;
  font-size: 1.733em;
  letter-spacing: -0.05em;
}
.insert .desc {
  text-align: center;
  letter-spacing: -0.05em;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  margin: 0 auto;
  padding: 30px 0;
}
fieldset legend {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.insert fieldset {
  width: 500px;
}
.insert fieldset ul {
  float: left;
  width: 75%;
  margin-top: -14px;
}
.insert fieldset ul &gt; li {
  overflow: hidden;
  margin-top: 14px;
}
.insert fieldset ul &gt; li label {
  float: left;
  width: 25%;

  color: #000;
  font-weight: 500;
  height: 35px;
  line-height: 35px;
}
.insert fieldset ul &gt; li input {
  float: left;
  width: 75%;
  height: 35px;
  line-height: 35px;
}
.insert fieldset input[type='submit'] {
  float: right;
  width: 22%;
  height: 85px;
  cursor: pointer;
  background: #115fad;
  color: #fff;
  border-radius: 0;
  border: 0;
  font-weight: 500;
  font-size: 1.067em;
}
.under {
  border-top: 1px solid #ccc;
  padding-top: 30px;
}
.under ul {
  margin: -10px auto 0;
  width: 500px;
}
.under ul &gt; li {
  overflow: hidden;
  margin-top: 10px;
}
.under ul &gt; li .btn {
  float: right;
  background: #878495;
  border-color: #878495;
  color: #fff;
}

/* 아이디/비밀번호 찾기 */
.find h2 {
  text-align: center;
}
.find-box {
  border-width: 1px;
  border-color: #000 #dcdcdc #dcdcdc #dcdcdc;
  border-style: solid;
  padding: 30px 40px;
  margin: 0 20px;
  min-height: 241px;
}
.find-box fieldset ul {
  float: left;
  width: 75%;
  margin-top: -7px;
}
.find-box fieldset ul &gt; li {
  overflow: hidden;
  margin-top: 7px;
}
.find-box fieldset ul &gt; li label {
  float: left;
  width: 25%;

  color: #000;
  font-weight: 500;
  height: 35px;
  line-height: 35px;
}
.find-box fieldset ul &gt; li input {
  float: left;
  width: 75%;
  height: 35px;
  line-height: 35px;
}
.find-box fieldset input[type='submit'] {
  float: right;
  width: 22%;
  height: 85px;
  cursor: pointer;
  background: #115fad;
  color: #fff;
  border-radius: 0;
  border: 0;
  font-weight: 500;
  font-size: 1.067em;
}
.find-box fieldset input[type='submit'].big {
  height: 119px;
}

/* 개인정보처리방침 */
.rules {
}
.rules .link {
  text-decoration: underline;
  color: #115fad;
}
.rules .charge {
  margin-top: 50px;
}
.rules .charge .title {
  background: #edeeef;
  text-align: center;
  font-size: 18px;
  color: #00918c;
  margin-right: 30px;
  padding: 40px 0;
  font-weight: 500;
}
.indent1 {
  padding-left: 20px;
}
.table-chart .title {
  color: #333;
  font-size: 1.333em;
  font-weight: 500;
  line-height: 35px;
}

/* 경영공시 */
.detail-content h2 + .table-wrap,
.detail-content h3 + .table-wrap {
  /* margin-top: -30px; */
}
.table-wrap + h3 {
  margin-top: 20px;
}
.price {
  text-align: right;
}

/* 윤리경영 */
.scroll-area {
  padding: 30px; /*margin-top:-20px;*/
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: #d0d0d0;
  font-size: 0.933em;
  height: 455px;
  overflow: auto;
  display: none;
}
.scroll-area.active {
  display: block;
}
.scroll-area h3 {
  color: #666;
  font-weight: 400;
}
.scroll-area h3 + h3 {
  margin-top: 20px;
}

/* 행정정보공개 */
.open-info {
}
.open-info .title {
  color: #115fad;
  font-weight: 500;
  font-size: 2em;
  line-height: 35px;
  margin-top: 10px;
}
.open-info .bold {
  font-weight: 500;
  font-size: 1.333em;
  line-height: 26px;
}
.open-info hr {
  margin: 40px 0;
}
.open-info hr.br {
  margin: 0;
}

.open-info .bold + .common-list {
  margin-top: 10px;
}
.open-info .bold + .bold {
  margin-top: 10px;
}
.open-info .common-list + .bold {
  margin-top: 20px;
}

.open-info .bold.i-check {
  padding-left: 25px;
  background: url(/korean/img/sub/i_check.gif) 0 3px no-repeat;
}

.thumbBox-list {
  overflow: hidden;
}
.thumbBox-list &gt; li {
  border: 1px solid #d8d7d7;
  width: 227px;
  float: left;
  margin-left: 50px;
}
.thumbBox-list .figure,
.thumbBox-list .figure img {
  width: 100%;
}
.thumbBox-list .figcaption {
  text-align: center;
  height: 150px;
}
.thumbBox-list .figcaption strong {
  display: block;
  color: #333;

  padding: 18px 0;
}
.btn.green {
  color: #fff;
  border-color: #00918c;
  background: #00918c;
}

/* 공공데이터 개방 */
.basic_box {
  border: 1px solid #dfdfdf;
  box-sizing: border-box;
  padding: 35px 165px;
  position: relative;
  margin-bottom: 45px;
}
.basic_box:before {
  content: '';
  width: 91px;
  height: 91px;
  position: absolute;
  left: 45px;
  top: 50%;
  margin-top: -45px;
  background: url(/korean/img/sub/icon_data.png) no-repeat;
}
.basic_box:after {
  content: '';
  display: block;
  clear: both;
}

/* 연구원행사 */
.calendar-wrap {
  position: relative;
  clear: both;
  margin-bottom: 20px;
}
.calendar-wrap .date-select {
  text-align: center;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: -1px;
  color: #333;
  background: #e4e6f0;
  border: 1px solid #d4d5de;
  height: 65px;
  padding: 14px 0;
}
.calendar-wrap .date-select a {
  display: inline-block;
  vertical-align: middle;
  width: 34px;
  height: 34px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.calendar-wrap .date-select a.left-arr {
  background: url(/korean/img/sub/date_select_arr1.gif) 0 0 no-repeat;
  margin-right: 10px;
}
.calendar-wrap .date-select a.right-arr {
  background: url(/korean/img/sub/date_select_arr2.gif) 0 0 no-repeat;
  margin-left: 10px;
}
.calendar thead th {
  border: 1px solid #d2d2d2;
  position: relative;
  background: #f6f7fd;
  padding: 10px 0;
}
.calendar .sun {
  color: #115fad;
}
.calendar .sat {
  color: #115fad;
}
.calendar td {
  border: 1px solid #d2d2d2;
  height: 5.5em;
  vertical-align: top;
  position: relative;
  padding: 0 10px;
}
.calendar td ul {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.calendar td ul li {
  display: block;
  background: #3abde7;
  padding: 3px 10px;
  color: #fff;
  border-top: 1px solid #fff;
  line-height: 18px;
  font-size: 13px;
}
.calendar td ul li.cal_blank {
  background: #fff;
}
.calendar td:first-child p {
  color: #f06f1c;
}
.calendar td:last-child p {
  color: #04287e;
}
.calendar .complete {
  background: #a2a5bc;
}
.calendar .apply-pm {
  cursor: pointer;
}

/* 행사포토 */
#slider.photo-slide {
  text-align: center;
  position: relative;
  border-top: 3px solid #000;
  padding: 20px 40px 0;
}
#slider.photo-slide .slides {
}
#slider.photo-slide .slides &gt; li img {
  width: 740px;
  height: 493px;
}
#slider.photo-slide .flex-nav-prev a {
  position: absolute;
  top: 35%;
  left: 70px;
  width: 30px;
  height: 30px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  background: url(/korean/img/sub/flex-nav-prev.png) center center no-repeat;
  display: block;
}
#slider.photo-slide .flex-nav-next a {
  position: absolute;
  top: 35%;
  right: 70px;
  width: 30px;
  height: 30px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  background: url(/korean/img/sub/flex-nav-next.png) center center no-repeat;
  display: block;
}

#slider.photo-slide .figcaption {
  width: 100%;
  background: #fff;
  margin: 23px 0 14px;
  text-align: left;
  padding: 25px 40px;
  position: relative;
}
#slider.photo-slide .figcaption .title {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
#slider.photo-slide .figcaption .desc {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  overflow: hidden;
  margin-bottom: 20px;
} /*text-overflow:ellipsis; white-space:nowrap; overflow:hidden;*/

#slider.photo-slide .figcaption .title {
  color: #115fad;
  font-size: 1.333em;
  font-weight: 500;
  text-align: center;
}
#slider.photo-slide .figcaption .detail-view {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: block;
  /* width: 55px;
  height: 55px; */
  color: #fff;
  background: #115fad;
  padding: 13px;
  line-height: 1;
  position: relative;
  display: inline-block;
  top: inherit;
  right: inherit;
  transform: none;
  margin: 20px auto;
}
#carousel.photo-slide {
  padding: 0 40px;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}
#carousel.photo-slide .slides {
  overflow: hidden;
}
#carousel.photo-slide .slides &gt; li {
  cursor: pointer;
  line-height: 20px;
}
#carousel.photo-slide .slides &gt; li img {
  width: 100%;
  height: 160px;
}
#carousel.photo-slide .slides &gt; li .figcaption {
  margin-top: 10px;
  height: 40px;
  overflow: hidden;
}
#carousel.photo-slide .slides &gt; li.flex-active-slide {
}
#carousel.photo-slide .slides &gt; li.flex-active-slide .figure {
  position: relative;
}
#carousel.photo-slide .slides &gt; li.flex-active-slide .figure:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 95, 173, 0.8);
  background-image: url(/korean/img/sub/bg_check.png);
  background-position: center center;
  background-repeat: no-repeat;
}
#carousel.photo-slide .flex-direction-nav {
  display: none;
}

/* 부서소개 */
.part-info {
  overflow: hidden;
  margin: 0 -2.4%;
}
.part-info &gt; li {
  float: left;
  width: 28.5%;
  margin: 1.2% 2.4%;
}
.part-info &gt; li a {
  color: #fff;
}
.part-info &gt; li img {
  width: 100%;
}
.part-info &gt; li .figure {
  box-shadow: 4px 4px 4px #353d66;
}
.part-info &gt; li a:hover {
  text-decoration: underline;
}
.part-info &gt; li a:hover .figure {
  position: relative;
}
.part-info &gt; li a:hover .figure:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(201, 84, 61, 1);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/korean/img/sub/bg_part-info.png);
  content: '';
}
.part-info &gt; li .figcaption {
  height: 105px;
  overflow: hidden;
}
.part-info &gt; li .title {
  font-size: 1.6em;
  padding: 15px 0;
}
.part-info &gt; li .desc {
  line-height: 22px;
}

/* 부서소개 */
.depart-area {
  width: 100%;
  background: url(/korean/img/sub/bg_pt.gif) 0 0 repeat;
  padding: 40px 20px;
}
.detail-content .depart-area .depart-area {
  padding: 0;
}
.depart-area + .detail-content .depart-area {
  padding: 0;
}
.depart-area .container {
  width: 800px;
  position: relative;
}
.depart-area .container .cts-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -18px;
  display: block;
  width: 38px;
  height: 38px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.depart-area .container .cts-controls-direction .cts-prev {
  left: -100px;
  background-image: url(/korean/img/sub/btn_prev.gif);
}
.depart-area .container .cts-controls-direction .cts-next {
  right: -100px;
  background-image: url(/korean/img/sub/btn_next.gif);
}
.depart-area .figcaptipn {
  color: #fff;
  margin-top: 10px;
}
.depart-area .figcaptipn strong.title {
  font-size: 1.6em;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
  display: none;
}
.depart-area .figcaptipn .desc {
  line-height: 23px;
  margin-bottom: 20px;
}
.depart-area .figcaptipn .btn {
  background: 0;
  color: #a6b0e0;
  border-color: #6672af;
  padding: 5px 20px;
}
.depart-area .figcaptipn .btn.homepage {
  background: url(/korean/img/common/bul_new_window.png) 88% center no-repeat;
  padding-right: 30px;
}

.block-list {
  overflow: hidden;
  margin: 0 -8px;
}
.block-list &gt; li {
}
.block-list &gt; li span {
  background: #efefef;
  display: block;
  margin: 3px;
  padding: 3px 30px;
  color: #666;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.block-list + .result {
  margin-top: 30px;
}
.kind {
  margin-top: 30px;
}
.square-box {
  width: 105px; /*min-height:85px;*/
  border: 1px solid #00918c;
  color: #00918c;
  padding: 15px;
  line-height: 22px;
  font-size: 1.067em;
}
.result {
  line-height: 23px;
  font-size: 1.067em;
  display: block;
  margin-bottom: 10px;
  color: #333;
}

/* 이사회 개최현황 */
.council {
  overflow: hidden;
}
.council &gt; li {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 15px;
  height: 240px;
  margin-top: 25px;
}
.council &gt; li .title {
}
.council &gt; li .title &gt; div {
  width: 100%;
  height: 125px;
  background: #edeeef;
  text-align: center;

  color: #00918c;
  font-weight: 500;
  padding: 44px 0;
  line-height: 20px;
}
.council &gt; li .story {
  padding-left: 30px;
}
.council &gt; li .story .hypen {
  font-size: 0.933em;
  letter-spacing: -0.05em;
}

/* 연구진 정보 */
.captin-researcher {
  background: #1e274e;
  padding: 40px 0;
  overflow: hidden;
}
.captin-researcher .captin {
  color: #fff;
}
.captin-researcher .captin .figcaption {
  padding-left: 35px;
  position: relative;
}
.captin-researcher .captin .figcaption .title {
  font-size: 1.533em;
  margin-bottom: 10px;
}
.captin-researcher .captin .figcaption .title span {
  display: block;
  opacity: 0.5;
  font-size: 0.652em;
}
.captin-researcher .captin .figcaption .common-list &gt; li {
  line-height: 27px;
  overflow: hidden;
}
.captin-researcher .captin .figcaption .common-list &gt; li:after {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  background: #fff;
  width: 2px;
  height: 2px;
}
.captin-researcher .captin .figcaption .common-list &gt; li strong {
  width: 74px;
  float: left;
}
.captin-researcher .captin .figcaption .common-list &gt; li span {
  display: inline-block;
  width: calc(100% - 74px);
  float: left;
}
.captin-researcher .captin .figcaption .common-list &gt; li em.dotum {
  font-family: dotum;
  width: auto;
  display: inline;
  float: inherit;
}
.captin-researcher .captin .figcaption .short-cut {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 125px;
  height: 125px;
  background: #c0dcf2;
  border-radius: 100%;
  text-align: center;
  color: #1e274e;

  padding: 43px 0;
}

.member {
  color: #555;
  border-bottom: 1px solid #d6d5d5;
  padding-bottom: 35px;
  margin-bottom: 35px;
  overflow: hidden;
  position: relative;
}
.member.border {
  border: 1px solid #d6d5d5;
  padding: 35px;
}
.member.border:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #115fad;
  position: absolute;
  top: 0;
  left: 0;
}
.member h2 {
  margin-top: 0;
  line-height: 36px;
  margin-bottom: 30px;
}
.member .figcaption {
  padding-left: 35px;
}
.member .figcaption .title {
  font-size: 1.533em;
  margin-bottom: 10px;
}
.member .figcaption .title span {
  display: block;
  opacity: 0.5;
  font-size: 0.652em;
}
.member .figcaption .common-list &gt; li {
  line-height: 27px;
  overflow: hidden;
}
.member .figcaption .common-list &gt; li:after {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  background: #115fad;
  width: 2px;
  height: 2px;
}
.member .figcaption .common-list &gt; li strong {
  width: 64px;
  float: left;
}
.member .figcaption .common-list &gt; li span {
  display: inline-block;
  width: calc(100% - 64px);
  float: left;
  letter-spacing: -0.05em;
  font-size: 0.933em;
}
.member .figcaption .common-list &gt; li em.dotum {
  font-family: dotum;
  width: auto;
  display: inline;
  float: inherit;
}
.member .clearfix {
  margin-top: 50px;
}
.member .detail {
  border-color: #115fad;
  background: #115fad;
  color: #fff;
  font-size: 13px;
  padding: 3px 8px;
}

/* 만족도조사 */
.contentInfo {
  border: 1px solid #e9e9e9;
  margin-top: 80px;
}
.contentInfo .description {
  border-bottom: 1px solid #e9e9e9;
  background: #f7fafe;
  padding: 15px 30px;
}
.contentInfo .description strong {
  color: #115fad;
  font-weight: 400;
}
.contentInfo .satisfy {
  padding: 15px 30px;
  font-size: 0.867em;
}
.contentInfo .satisfy .clearfix {
}
.contentInfo .satisfy .clearfix .grade {
  overflow: hidden;
  padding: 10px 0;
}
.contentInfo .satisfy .clearfix .grade &gt; li {
  float: left;
  margin-right: 14px;
}
.contentInfo .satisfy .clearfix .opinion {
}
.contentInfo .satisfy .clearfix .opinion label {
  margin-right: 10px;
  position: relative;
}
.contentInfo .satisfy .clearfix .opinion label:after {
  content: '';
  background: #c3c9cf;
  width: 3px;
  height: 3px;
  position: absolute;
  top: 5px;
  left: -10px;
}
.contentInfo .satisfy .clearfix .opinion .btn {
  border-color: #115fad;
  background: #115fad;
  color: #fff;
}
.contentInfo .satisfy .duty {
}
.contentInfo .satisfy .duty dt,
.contentInfo .satisfy .duty dd {
  display: inline-block;
  height: 24px;
  line-height: 24px;
}
.contentInfo .satisfy .duty dt {
  color: #444;
  background-repeat: no-repeat;
  background-position: 10px 1px;
  padding-left: 35px;
  background-image: url(/korean/img/sub/bg_duty3.gif);
}
.contentInfo .satisfy .duty dt:nth-child(1) {
  background-image: url(/korean/img/sub/bg_duty1.gif);
}
.contentInfo .satisfy .duty dt:nth-child(3) {
  background-image: url(/korean/img/sub/bg_duty2.gif);
}
.contentInfo .satisfy + .satisfy {
  border-top: 1px solid #e9e9e9;
}

.Outline-Mint {
  display: inline-block;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  background-image: none;
  color: #333;
  background-color: #fff;
  transition: all 0.25s ease;
  border: 1px solid #c6c6c6;
  padding: 6px 12px;
}

.imgVmiddle {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.addition {
  padding: 20px 0 40px;
  text-align: center;
}
.addition ul {
  width: 570px;
  margin: 30px auto 0;
}
.addition ul &gt; li {
  overflow: hidden;
  margin-top: 10px;
}
.addition ul &gt; li .btn {
  float: right;
}

/* SNS */
.sns-area {
  position: absolute;
  top: 30px;
  right: 0;
}
.sns-area &gt; li {
  padding-right: 13px;
}
.btnPrint {
  float: right;
}
.btnPrint .IR {
  background: url(/korean/img/sub/bg_print.gif) 0 0 no-repeat;
  width: 22px;
  height: 22px;
  display: inline-block;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.snsBox {
  float: left;
  position: relative;
}
.snsBox &gt; a {
  background: url(/korean/img/sub/bg_share.gif) 0 0 no-repeat;
  width: 22px;
  height: 22px;
  display: inline-block;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.snsBox #share {
  position: absolute;
  top: -13px;
  left: -275px;
  width: 250px;
  height: 50px;
  background: #dfe5ec;
  border: 1px solid #d0d0d0;
  text-align: center;
  padding: 7px 0;
}
.snsBox #share:after {
  position: absolute;
  top: 10px;
  right: -26px;
  content: '';
  border-color: transparent transparent transparent #dfe5ec;
  border-width: 13px;
  border-style: solid;
}
.snsBox #share &gt; li {
  display: inline-block;
}
.snsBox #share &gt; li &gt; a {
  display: block;
  width: 32px;
  height: 32px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  background-position: 0 0;
  background-repeat: no-repeat;
  margin: 0 5px;
}
.snsBox #share &gt; li.sns_icon01 &gt; a {
  background-image: url(/korean/img/sub/sns_icon01.gif);
}
.snsBox #share &gt; li.sns_icon02 &gt; a {
  background-image: url(/korean/img/sub/sns_icon02.gif);
}
.snsBox #share &gt; li.sns_icon03 &gt; a {
  background-image: url(/korean/img/sub/sns_icon03.gif);
}
.snsBox #share &gt; li.sns_icon04 &gt; a {
  background-image: url(/korean/img/sub/sns_icon04.gif);
}
.snsBox #share &gt; li.sns_icon05 &gt; a {
  background-image: url(/korean/img/sub/sns_icon05.gif);
}

.detail-content h2#nth3 + .container {
  margin-top: -63px;
}

.mobile-title {
  color: #115fad;
  font-size: 1.444em;
  margin-bottom: 10px;
  display: block;
  padding-bottom: 30px;
}

.mobile-title-org {
  color: #333;
  font-size: 1.6em;
  margin-bottom: 10px;
  display: block;
  padding-bottom: 30px;
}

.bg-half {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
.bg-half:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #efefef;
  z-index: 1;
}
.bg-half &gt; div {
  position: relative;
  z-index: 2;
}
.bg-half img.first {
  padding-left: 125px;
}
.bg-half p {
  color: #414b7d;
  font-size: 20px;
  margin-bottom: 40px;
}
.bg-half .btn {
  background: url(/korean/img/sub/bg_download.gif) 18px 6px no-repeat;
  padding-left: 50px;
}

.web {
  display: block;
}
.mobile {
  display: none;
}

/* 통합검색 */
.srch_results {
  padding: 15px 0;
  font-size: 22px;
  line-height: 22px;
  color: #000;
  font-weight: 600;
}
.srch_results span.results_txt {
  color: #115fad;
}
.srch_results strong {
  color: #115fad;
  font-weight: 600;
}
.srch_results strong span {
  font-size: 20px;
  line-height: 22px;
}
.srch_tab {
  padding: 25px 25px 20px;
  border: 4px solid #5390ed;
}
.srch_tab .title {
  padding: 0 0 15px 30px;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  font-weight: 600;
  background: url(/korean/img/common/srch_tab_tit.gif) left top no-repeat;
}
.srch_tab .cont li {
  float: left;
}
.srch_tab .cont li a {
  display: inline-block;
  width: 170px;
  padding: 0 0 5px 18px;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  background: url(/korean/img/common/srch_tab_bu.gif) left top no-repeat;
}
.srch_tab .cont li a span {
  color: #fe0000;
  font-weight: 600;
}

.para_box {
  padding: 5px 0;
  border-bottom: 1px solid #d3d3d3;
}
.para_box h2 {
  padding: 20px 0 20px 0;
  font-size: 20px;
  line-height: 18px;
  color: #000;
  font-weight: 600;
  background: url(/korean/img/common/h2_bg.gif) left 19px no-repeat;
}
.para_box h2 span {
  color: #ff0000;
}
.para_box h3 {
  padding: 15px 0 15px 28px;
  font-size: 16px;
  line-height: 18px;
  color: #0059a6;
  font-weight: 600;
  background: url(/korean/img/common/h3_bg.gif) left 20px no-repeat;
}
.para_box ul.bu li {
  padding: 0 0 10px 20px;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  background: url(/korean/img/common/para_bu.gif) 9px 6px no-repeat;
}
.para_box p.bu a {
  display: inline-block;
  padding: 0 0 10px 20px;
  font-size: 16px;
  line-height: 16px;
  color: #000;
  background: url(/korean/img/common/para_bu.gif) 9px 6px no-repeat;
}
.para_box .cont {
  padding: 0 0 20px 0;
}
.para_box .cont p.tit {
  padding-bottom: 5px;
}
.para_box .cont p.tit a {
  font-size: 14px;
  line-height: 18px;
  color: #000;
}
.para_box img {
  vertical-align: middle;
}
.para_box .profile,
.para_box .file {
  margin-left: 5px;
}
.para_box .blue {
  color: #0055ab !important;
}
.para_box .orange {
  color: #115fad !important;
}
.para_box .blank {
  display: inline-block;
  padding-left: 20px;
  vertical-align: middle;
  border-bottom: 1px dotted #000;
  background: url(/korean/img/common/ico_blank.gif) 3px center no-repeat;
  cursor: pointer;
}
.para_box .put_box {
  padding: 5px 0;
  text-align: right;
}
.para_box .put_box a.more {
  display: inline-block;
  padding-right: 20px;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  background: url(/korean/img/common/more.gif) right center no-repeat;
  position: relative;
}
.para_box .put_box a.more:hover,
.para_box .put_box a.more:focus {
  -webkit-transform: none;
  transform: none;
}

#contents .paging_bar {
  padding-top: 80px;
}
.paging_bar {
  padding: 20px 0;
  text-align: center;
}
.paging_bar img {
  vertical-align: middle;
  margin-top: 6px;
}
.paging_bar a,
.paging_bar .current,
.paging_bar .total {
  display: inline-block;
  width: 22px;
  height: 22px;
  font-size: 13px;
  text-align: center;
  color: #484848;
  font-weight: 600;
  vertical-align: middle;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.paging_bar a:hover {
  box-shadow: 0 0 6px #cfcfcf;
}
.paging_bar .current {
  color: #fff;
  font-weight: 600;
  background-color: #4576c0;
}
.paging_bar .total {
  display: none;
}
.paging_bar .prev,
.paging_bar .prev2,
.paging_bar .next,
.paging_bar .next2 {
  width: 22px;
  text-align: center;
  background-color: #cfcfcf;
}
.paging_bar .prev {
  margin-right: 10px;
}
.paging_bar .next {
  margin-left: 10px;
}
@media screen and (max-width: 640px) {
  .paging_bar a,
  .paging_bar .current {
    width: 16px;
  }
  .paging_bar .prev {
    margin-right: 4px;
  }
  .paging_bar .next {
    margin-left: 4px;
  }
}

.no_srch {
  padding: 30px 0;
  font-size: 18px;
  color: #000;
  text-align: center;
}
.no_srch span {
  color: #fe0000 !important;
  font-weight: 600;
}

/* 조직도 */
.org_area {
  position: relative;
  margin: auto;
  text-align: center;
  overflow: hidden;
}
.org_list {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.org_list li {
  position: relative;
  overflow: hidden;
}
.org_list &gt; li {
  float: left;
}
.org_list::before {
  display: block;
  position: absolute;
  top: 162px;
  left: 0;
  width: 75%;
  height: 1px;
  background-color: #d2d4dc;
  content: '';
  z-index: 1;
}
.org_list &gt; li &gt; a:first-child,
.org_list &gt; li &gt; a:nth-of-type(2) {
  display: block;
  float: left;
  width: 124px;
  height: 124px;
  margin-top: 98px;
  background-color: #1e274e;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  line-height: 124px;
  font-size: 18px;
  position: relative;
  z-index: 5;
}
.org_list &gt; li &gt; a.director {
  background-color: #c0dcf2;
  color: #1e274e;
}

.org_list &gt; li &gt; a.sub-director {
  background-color: #c4d7dd;
  color: #1e3c4e;
  margin-left: 0;
}

.attached_org {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  overflow: hidden;
}
.attached_org::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #d2d4dc;
  content: '';
}
.attached_org li {
  position: relative;
  display: block;
  width: 133px;
  margin-top: 200px;
  background-color: #fff;
  border: 1px solid #d6d5d5;
  border-radius: 30px;
  text-align: center;
  line-height: 60px;
  font-size: 15px;
  z-index: 5;
}
.org_list &gt; li:nth-child(2) {
  z-index: 5;
}
.org_list &gt; li:nth-child(2) .attached_org {
  float: left;
  margin-left: 0;
}
.attached_org li:first-child {
  margin-top: 0;
}
.org_list .part_area {
  position: relative;
  float: left;
  text-align: left;
  overflow: hidden;
  margin-left: 0;
}
.org_list .part_area::before {
  display: block;
  position: absolute;
  top: 162px;
  left: 10px;
  width: 1px;
  height: calc(100% - 185px);
  height: -webkit-calc(100% - 185px);
  background-color: #d2d4dc;
  content: '';
}
.org_list .part {
  position: relative;
  margin-left: 40px;
  background-color: #fff;
  overflow: hidden;
}
.org_list .part::before {
  display: block;
  position: absolute;
  top: 22px;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #d2d4dc;
  content: '';
}
.org_list .part::after,
.org_list .last::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 22px;
  background-color: #fff;
  content: '';
}
.org_list .last::after {
  bottom: 22px;
  width: 100px;
  height: 1px;
  background-color: #d2d4dc;
}
.org_list .part &gt; li {
  padding-left: 70px;
}
.org_list .part &gt; li:nth-child(1),
.org_list .part &gt; li:nth-child(4),
.org_list .part &gt; li:nth-child(5),
.org_list .part &gt; li:nth-child(6) {
}
.org_list .part &gt; li::before,
.org_list .last &gt; li::before {
  display: block;
  position: absolute;
  top: 22px;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: #d2d4dc;
  content: '';
}
.org_list .part &gt; li &gt; a,
.org_list .last &gt; li &gt; a {
  display: block;
  background: #9fa3a5;
  min-width: 220px;
  height: 44px;
  color: #fff;
  padding: 9px 15px;
  border-top: 1px solid #fff;
  font-size: 18px;
  position: relative;
}
.org_list .part ul,
.org_list .last ul {
  position: relative;
  margin: 0 15px;
  padding: 10px 0;
  border-left: solid 1px #d2d4dc;
}
.org_list .part ul::after,
.org_list .last ul::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: -1px;
  width: 1px;
  height: 27px;
  background-color: #fff;
  content: '';
}
.org_list .part ul &gt; li,
.org_list .last ul &gt; li {
  padding: 2px 0;
}
.org_list .part ul &gt; li a,
.org_list .last ul &gt; li a {
  display: block;
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
}
.org_list .part ul &gt; li a::before,
.org_list .last ul &gt; li a:before {
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #d2d4dc;
  content: '';
}
.org_list &gt; li .last {
  clear: both;
  position: relative;
  margin-left: 10px;
  padding-left: 100px;
}

.organization {
  position: relative;
  width: 790px;
  height: 500px;
  margin: 70px auto;
}
.organization .grade1 &gt; a {
  width: 124px;
  height: 124px;
  border-radius: 100%;
  text-align: center;
  display: block;
  line-height: 124px;
  font-size: 18px;
  position: absolute;
  top: 100px;
}
.organization .grade1.chairman a {
  background-color: #1e274e;
  color: #fff;
  left: 0;
}
.organization .grade1.chairman a:after {
  position: absolute;
  top: 49%;
  right: -327px;
  content: '';
  width: 327px;
  height: 1px;
  background: #d2d4dc;
}
.organization .grade1.director &gt; a {
  background-color: #c0dcf2;
  color: #1e274e;
  left: 208px;
}
.organization .grade1.director {
}
.organization .grade1.director .part {
  position: absolute;
  top: 0;
  right: 0;
}
.organization .grade1.director .part:after {
  content: '';
  position: absolute;
  top: 22px;
  left: -70px;
  width: 1px;
  height: 457px;
  background: #d2d4dc;
}
.organization .grade1.director .part &gt; li &gt; a {
  width: 270px;
  display: block;
  background: #9fa3a5;
  height: 44px;
  color: #fff;
  padding: 9px 15px;
  border-top: 1px solid #fff;
  font-size: 18px;
  position: relative;
}
.organization .grade1.director .part &gt; li &gt; a:after {
  position: absolute;
  top: 49%;
  left: -70px;
  content: '';
  width: 70px;
  height: 1px;
  background: #d2d4dc;
}
.organization .grade1.director .part &gt; li ul {
  padding: 10px 0 10px 30px;
  font-size: 14px;
  letter-spacing: -0.05em;
  position: relative;
}
.organization .grade1.director .part &gt; li ul:after {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 1px;
  height: 162px;
  background: #d2d4dc;
}
.organization .grade1.director .part &gt; li ul &gt; li {
  position: relative;
}
.organization .grade1.director .part &gt; li ul &gt; li:after {
  position: absolute;
  top: 49%;
  left: -15px;
  content: '';
  width: 10px;
  height: 1px;
  background: #d2d4dc;
}
.organization .grade2 {
  width: 133px;
  border: 1px solid #d6d5d5;
  border-radius: 30px;
  text-align: center;
  display: block;
  line-height: 60px;
  font-size: 15px;
  position: absolute;
  left: 100px;
}
.organization .grade2.top-part {
  top: 0;
}
.organization .grade2.top-part:after {
  content: '';
  position: absolute;
  top: 60px;
  left: 49%;
  width: 1px;
  height: 203px;
  background: #d2d4dc;
}
.organization .grade2.top-part2 {
  top: 264px;
}

.organization .grade3 {
  width: 133px;
  border: 1px solid #d6d5d5;
  border-radius: 30px;
  text-align: center;
  display: block;
  line-height: 60px;
  font-size: 15px;
  position: absolute;
  left: 300px;
}
.organization .grade3.top-part {
  top: 0;
}
.organization .grade3.top-part:after {
  content: '';
  position: absolute;
  top: 60px;
  left: 49%;
  width: 1px;
  height: 203px;
  background: #d2d4dc;
}
.organization .grade3.top-part2 {
  top: 264px;
}

.researcher {
  font-family: dotum;
}

/* 인권경영 2019-01-15 jmsong */
/* rem방식 기준이 제대로 안잡혀있어서 임의로 px로 설정함.. */
.human-wrap {
  position: relative;
  color: #333;
}
.human-wrap .sub-tit {
  position: relative;
  padding-top: 50px;
  font-size: 36px;
  line-height: 38px;
  text-align: center;
  font-weight: 800;
  color: #333;
}
.human-wrap .sub-tit::after {
  position: absolute;
  display: block;
  width: 185px;
  height: 51px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  content: '';
  background: url(../img/sub/tit_top.png) no-repeat 0 0;
}
.human-wrap .cont {
  padding: 60px 0 45px;
}
.human-wrap .cont img {
  float: left;
  margin-right: 60px;
}
.human-wrap .cont p {
  margin-left: 20px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  word-break: keep-all;
}
.human-wrap .cont p:after {
  clear: both;
  display: block;
  content: '';
}
.human-wrap .list-cont {
  position: relative;
  padding: 30px 36px;
  border-top: 3px solid #000;
  background: #f7f7f7;
}
.human-wrap .list-cont li {
  position: relative;
  padding-left: 76px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 18px;
}
.human-wrap .list-cont li:last-child {
  margin-bottom: 0;
}
.human-wrap .list-cont li em {
  position: absolute;
  display: block;
  width: 58px;
  height: 22px;
  left: 0;
  top: 0;
  background: #115fad;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  border-radius: 50px;
}

@media (max-width: 1000px) {
  .snavigation,
  #content {
    padding-bottom: 25px;
  }
  .top {
    margin-right: -485px;
  }
  .detail-content .container {
    padding-left: 0;
    padding-right: 0;
  }

  .org_area {
    width: 100%;
  }
}

@media (max-width: 999px) {
  .navi .container .scale {
    left: 15px;
  }
  .embed-container.rectangle {
    padding-bottom: 62.5%;
  }
  .snavigation .select-menu2 {
  }
  .scale {
    display: none;
  }
  .navi .container .btn {
    right: 0;
  }

  .greeting .pull-left,
  .greeting .pull-right,
  .greeting.profile .pull-right {
    width: 100%;
    background-position: center top;
  }

  .history-director &gt; li .figcaption {
    height: 190px;
    overflow: auto;
  }
  .history-director &gt; li .figcaption .name {
    font-size: 1.4em;
  }
  .history-director &gt; li .figcaption {
    padding: 15px;
  }
  .history-director &gt; li .figcaption ul &gt; li {
    font-size: 14px;
  }

  .board-count {
    margin-top: 15px;
    padding-right: 10px;
  }
  .top,
  .sns-area {
    display: none;
  }

  .bg-half img.first {
    padding-left: 15px;
    margin-bottom: 20px;
  }
}
@media (max-width: 990px) {
  .org_list .part_area::before {
    /*height: 59.5%;*/
  }
  .org_list .part &gt; li {
    padding-left: 15px;
  }
  .org_list &gt; li:nth-child(2) .attached_org {
    margin-left: 0;
  }
  .org_list &gt; li .last {
    padding-left: 45px;
  }
  .org_list .last::after {
    width: 45px;
  }

  .human-wrap .cont img {
    margin-right: 30px;
  }
}
@media (max-width: 920px) {
  .form-control.lg {
    width: 100px;
  }
  .org_list .last::after,
  .org_list .last &gt; li::before {
    display: none;
  }
  .org_list::before {
    display: none;
  }
  .org_list &gt; li,
  .org_list &gt; li &gt; a:first-child,
  .org_list &gt; li:nth-child(2) .attached_org,
  .org_list .part_area {
    float: none;
  }
  .org_list,
  .attached_org {
    display: inherit;
  }

  .org_list li,
  .attached_org {
    overflow: visible;
  }

  .attached_org::before {
    height: calc(100% + 13rem);
    z-index: -1;
  }

  .org_list &gt; li &gt; a:first-child {
    margin: 0 auto;
  }

  .org_list &gt; li &gt; a.sub-director {
    margin: auto;
    margin-top: 30px;
    float: none;
  }
  .attached_org::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 1px;
    margin-left: -20%;
    background-color: #d2d4dc;
    content: '';
  }
  .attached_org li {
    display: inline-block;
    margin: 0 5%;
  }
  .attached_org li:first-child {
    margin-bottom: 0;
  }
  .org_list .attached_org {
    padding: 15px 0;
  }
  .org_list .part_area {
    margin-left: 0;
    margin-top: 30px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .org_list .part_area::before {
    display: none;
  }
  .org_list .part {
    margin-left: 0;
  }
  .org_list &gt; li .last {
    margin-left: 0;
    padding-left: 15px;
  }
  .org_list .last:nth-of-type(1):before {
    width: 160px;
    left: -29px;
  }
  .org_list .last:last-child:before {
    display: none;
  }
  .org_list &gt; li:nth-child(2)::before {
    display: block;
    position: absolute;
    top: 217px;
    left: 10px;
    width: 48.85%;
    height: calc(100% - 238px);
    height: -webkit-calc(100% - 238px);
    border: solid 1px#d2d4dc;
    border-right: none;
    content: '';
  }
  .org_list &gt; li:nth-child(2)::after {
    display: none;
    position: absolute;
    top: 200px;
    left: 50.3%;
    width: 10px;
    height: 15px;
    background-color: #fff;
    content: '';
  }

  .human-wrap .sub-tit {
    font-size: 32px;
    line-height: 34px;
  }
  .human-wrap .cont {
    padding: 40px 0 35px;
  }
}

@media (max-width: 789px) {
  .organization {
    width: 100%;
    height: 860px;
  }
  .organization .grade1 &gt; a {
    top: inherit;
    margin-left: -62px;
  }
  .organization .grade1.chairman a {
    left: 50%;
  }
  .organization .grade1.chairman a:after {
    display: none;
  }
  .organization .grade1.director &gt; a {
    left: 50%;
    top: 200px;
  }
  .organization .grade1.director .part {
    position: absolute;
    top: 410px;
    right: 50%;
    margin-right: -145px;
  }
  .organization .grade1.director .part:after {
    left: -20px;
  }
  .organization .grade1.director .part &gt; li &gt; a:after {
    width: 20px;
    left: -20px;
  }
  .organization .grade2 {
    left: inherit;
    width: 143px;
  }
  .organization .grade2.top-part {
    top: 130px;
    left: 15px;
  }
  .organization .grade2.top-part2 {
    top: 130px;
    right: 15px;
  }
  .organization .grade2.top-part:after {
    display: none;
  }
  .organization .grade3 {
    left: inherit;
    width: 143px;
  }
  .organization .grade3.top-part {
    top: 320px;
    left: 15px;
  }
  .organization .grade3.top-part2 {
    top: 320px;
    right: 15px;
  }
  .organization .grade3.top-part:after {
    display: none;
  }

  .human-wrap .cont p {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 768px) {
  .magazine-list {
    margin: 0 -1%;
  }
  .ebook .bx-controls-direction a {
    margin-top: -30px;
  }
  .magazine-list &gt; li .figcaption .title {
    font-size: 12px;
    line-height: normal;
  }
  .magazine-list &gt; li {
    margin: 1%;
    width: 23%;
  }
  .magazine-list &gt; li a:hover .figcaption .title {
    display: block;
    margin: 0;
    padding: 0 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    z-index: 1;
    word-break: break-all;
    font-size: 12px;
    line-height: normal;
  }
  .magazine-list &gt; li .figcaption {
    top: calc(100% - 40px);
  }
  .snavigation .select-menu:after {
    right: 0;
  }
  .snavigation .select-menu .option &gt; li &gt; a {
    padding: 11px 15px;
  }
  .snavigation .select-menu,
  .snavigation .select-menu2 {
    width: 50%;
    margin-right: 0;
    height: inherit;
    overflow: inherit;
    padding-left: 20px;
  }
  .snavigation .select-menu2 {
    position: relative;
    display: block;
    float: left;
  }
  .snavigation .select-menu2 button {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .snavigation .select-menu2 .menu-list {
    border: 1px solid #1f2c46;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
  }
  .snavigation .select-menu2 .menu-list.active {
    opacity: 1;
    z-index: 20;
    visibility: visible;
  }
  .snavigation .select-menu2 .menu-list &gt; li {
    float: inherit;
  }
  .snavigation .select-menu2 .menu-list &gt; li &gt; a {
    display: block;
    padding: 11px 15px;
    color: #2a2a2a;
  }
  .snavigation .select-menu2 .menu-list &gt; li &gt; a:hover {
    background: #115fad;
    color: #fff;
  }
  .snavigation .select-menu button,
  .snavigation .select-menu2 button {
    background-position: 95% center;
  }

  /* .magazine-list &gt; li {
    width: 30%;
  } */
  /* .magazine-list &gt; li .figure img {
    height: 310px;
  } */
}

@media (max-width: 767px) {
  .common-tab &gt; li &gt; a:hover {
    background: none;
    color: #000 !important;
  }
  .common-tab &gt; li.active &gt; a:hover {
    background: #115fad;
    color: #fff !important;
  }
  .common-tab.type2 &gt; li {
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .common-tab.type2 &gt; li:last-child {
    border-bottom: 0;
  }
  .common-tab.type2 &gt; li &gt; a:hover {
    color: #000 !important;
  }
  .common-tab.type2:first-child &gt; li:first-child &gt; a:hover {
    color: #fff !important;
  }
  .common-tab.type2 {
    border: 0 !important;
  }
  .depart-area .container {
    width: 100% !important;
  }
  .detail-content {
    margin-top: 20px;
  }
  .search-area .form-control.normal {
    width: 20%;
  }
  .search-area .form-control.lg {
    width: 30%;
  }
  .search-area .btn.search {
    width: 22%;
  }

  .common-tab {
    display: block;
    min-height: 50px;
    margin-bottom: 0px;
  }
  .common-tab &gt; li.active {
    z-index: 10;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  .common-tab &gt; li {
    display: list-item;
    width: 100%;
    border-bottom: 0;
    text-align: left;
    border-left: 0;
    max-height: 0;
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  .common-tab &gt; li &gt; a {
    padding: 10px 25px;
  }
  .common-tab + .common-tab {
    display: none;
  }

  /*.board{display:block; border-top:2px solid #000;}
    .board thead th{display:none;}
    .board tbody{width:100%; display:block;}
    .board tbody tr{overflow: hidden; border-top: 1px solid #dcdbdb; padding-top: 10px; display: block; padding-bottom: 10px; width:100%;}
    .board tbody td{display:inline-block; float:left; border-bottom:0; padding:2px 5px;}
    .board tbody td.tag{width:15%;}
    .board tbody td.txt{width:85%;}
    .board tbody td.author{display:block; clear:both; margin-left:15%;}
    .board tbody td.num,
    .board tbody td.file,
    .board tbody td.count{display:none;}*/
  span.look {
    display: none;
  }

  .table-wrap {
    overflow: auto;
  }
  .table-wrap table {
    width: 1000px;
  }
  .table-wrap table tbody th,
  .table-wrap table tbody td {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* #footer .copyright{font-size: 0.8333em; padding: 0 15px;} */
  .ellipsis {
    width: 100%;
  }
  .snavigation .select-menu,
  .snavigation .select-menu2 {
    padding-left: 10px;
  }

  hr.br {
    display: inline;
    border-width: 0;
    margin: 0;
    padding: 0;
  }

  .contentInfo .description {
    padding-left: 15px;
    padding-right: 15px;
  }
  .contentInfo .satisfy {
    margin-left: 15px;
    margin-right: 15px;
  }
  .contentInfo .description strong {
    display: block;
  }
  .contentInfo .satisfy .clearfix .grade &gt; li {
    width: 33.333%;
    margin-right: 0;
    margin-bottom: 7px;
  }
  .contentInfo .satisfy .clearfix .pull-right {
    float: left !important;
    width: 100%;
  }
  .contentInfo .satisfy .clearfix .opinion label {
    display: block;
    margin-bottom: 10px;
  }
  .contentInfo .satisfy .clearfix .opinion .form-control.xl {
    width: calc(100% - 70px);
  }
  .contentInfo .satisfy .clearfix .opinion .btn {
    width: 65px;
    font-size: 0.8rem;
    height: 35px;
    line-height: 35px;
    padding: 0;
  }
  .contentInfo .satisfy .duty dt,
  .contentInfo .satisfy .duty dd {
    margin-bottom: 10px;
  }

  .contentInfo {
    margin-top: 40px;
  }

  .table-chart .title {
    margin-bottom: 10px;
  }
  .table-chart .form-control.lg {
    width: 100%;
  }
  .price {
  }

  .council &gt; li {
    height: inherit;
  }
  .council &gt; li .title &gt; div {
    padding-top: 15px;
    padding-bottom: 15px;
    height: inherit;
  }
  .council &gt; li .title {
    margin-bottom: 15px;
  }
  .council &gt; li .story {
    padding-left: 15px;
  }

  .open-info .title {
    font-size: 1.5em;
  }
  .open-info .bold {
    font-size: 1.1em;
    margin-top: 10px;
  }
  .open-info hr {
    margin: 20px 0;
  }

  .thumbBox-list {
    margin: 15px -1% 0;
  }
  .thumbBox-list &gt; li {
    margin-left: 0;
    margin: 0 1%;
    width: 31.333%;
  }

  .find-box {
    padding: 15px;
    min-height: inherit;
  }
  .find-box .fieldset {
    padding: 15px 0;
  }

  .rules .charge .title {
    margin-right: 0;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .indent1 {
    padding-left: 0;
  }

  .login {
    padding: 15px;
    margin: 0;
  }
  .login .title-box {
    width: 100%;
  }
  .insert,
  .insert fieldset,
  .insert .under ul {
    width: 100%;
  }
  .insert .title {
    font-size: 1.333em;
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .insert .under ul &gt; li .btn {
    float: inherit;
    display: block;
  }

  .mail-content {
    padding-top: 25px;
  }

  .square-box {
    width: 100%;
    min-height: inherit;
    text-align: center;
    margin-bottom: 15px;
  }
  .block-list &gt; li span {
    white-space: inherit;
    padding: 15px;
  }
  .kind {
    margin-top: 15px;
  }

  .common-tab.type1 &gt; li.active &gt; a,
  .common-tab.type2 &gt; li.active &gt; a {
    background: url(/korean/img/sub/i_select_arr.png) 95% center / 15px 8px no-repeat #115fad;
  }

  .common-tab.type1 &gt; li &gt; a {
    border: 1px solid #fff;
  }
  .common-tab.type2 &gt; li &gt; a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .common-tab.type3 &gt; li &gt; a {
    border-top: 1px solid #ddd;
    height: 50px;
    padding-top: 17px;
  }
  .common-tab.type3 &gt; li.active &gt; a {
    background: url(/korean/img/sub/i_select_arr.png) 95% center / 15px 8px no-repeat #115fad;
  }

  .scroll-area {
    border-width: 1px;
  }

  /* 달력 모바일폼 */
  .basic-table td {
    padding: 5px;
  }
  .calendar-wrap .note {
    position: initial;
    padding: 10px 0;
  }
  .calendar-wrap .date-select a {
    background-size: auto 100%;
  }
  .calendar td ul {
    position: initial;
    width: auto;
    overflow: hidden;
    vertical-align: middle;
  }
  .calendar td ul li {
    float: left;
  }
  .calendar td ul li.cal_blank {
    background: #fff;
  }
  .calendar li:first-child {
    margin-left: 10px;
  }
  .calendar colgroup {
    display: none;
  }
  .calendar th {
    display: none;
  }
  .calendar tbody {
    border-bottom: 1px solid #434343;
    border-top: 2px solid #434343;
  }
  .calendar td {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border-image: none;
    border-style: solid none none;
    border-width: 1px 0 0;
    display: block;
    height: auto;
    vertical-align: top;
  }
  .calendar p {
    border-right: 1px solid #d2d2d2;
    display: inline-block;
    text-align: right;
    width: 20%;
    padding: 5px 10px;
  }
  .calendar td:nth-child(1) p::after {
    content: '일';
    margin-left: 10px;
  }
  .calendar td:nth-child(2) p::after {
    content: '월';
    margin-left: 10px;
  }
  .calendar td:nth-child(3) p::after {
    content: '화';
    margin-left: 10px;
  }
  .calendar td:nth-child(4) p::after {
    content: '수';
    margin-left: 10px;
  }
  .calendar td:nth-child(5) p::after {
    content: '목';
    margin-left: 10px;
  }
  .calendar td:nth-child(6) p::after {
    content: '금';
    margin-left: 10px;
  }
  .calendar td:nth-child(7) p::after {
    content: '토';
    margin-left: 10px;
  }
  .calendar ul {
    display: inline-block;
  }
  .calendar li {
    display: inline-block;
    margin-left: 10px;
  }
  .calendar td ul li {
    font-size: 11px;
    padding: 1px 5px;
  }
  .calendar .empty {
    display: none;
  }

  #slider.photo-slide .slides &gt; li img {
    width: 100%;
    height: inherit;
  }
  #slider.photo-slide .flex-nav-prev a {
    top: 30%;
    left: 0;
  }
  #slider.photo-slide .flex-nav-next a {
    top: 30%;
    right: 0;
  }
  #slider.photo-slide .figcaption {
    padding: 15px;
  }
  #slider.photo-slide .figcaption .title,
  #slider.photo-slide .figcaption .desc {
    width: 100%;
  }
  #slider.photo-slide .figcaption .title {
    margin-bottom: 10px;
  }
  .common-box.bg.proposal {
    padding-left: 15px;
    background: #e4e6f0;
  }
  .btn-half .pull-left p,
  .btn-half .pull-right p {
    display: none;
  }

  .greeting.profile .pull-left strong,
  .greeting.profile .pull-left ul {
    width: 100%;
  }
  .greeting.profile .pull-left strong {
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .greeting.profile .pull-left strong:after {
    left: 0;
    bottom: 0;
    top: inherit;
    right: inherit;
  }

  /* 세부내용 */
  .navi .container {
    padding: 15px;
  }
  /*.navi .container h1{text-align:left;}*/
  .navi .container .btn {
    right: 15px;
  }
  .report-list &gt; li .figure {
    display: none;
  }
  .report-area .container {
    width: 100%;
  }
  .report-list &gt; li .figlist {
    width: 100%;
    padding: 15px;
  }

  .board tbody td.num-bold {
    width: 50px;

    font-weight: 400;
  }
  .board tbody td.thumbnail,
  .board colgroup,
  .description .txts .desc,
  .description .txts .common-list,
  .description .txts .title span {
    display: none;
  }
  .description .txts .title {
    font-weight: 400;
  }

  .part-info &gt; li {
    width: 44.5%;
  }

  .history .square-title {
    width: 100%;
    height: inherit;
    padding: 15px 0;
    margin-bottom: 15px;
  }
  .history .year {
    margin-left: 0;
  }
  .history .year &gt; li strong {
    width: 58px;
    margin-right: 14px;
  }
  .history .year &gt; li strong:after {
    right: -17px;
  }
  .history .year &gt; li ul {
    width: calc(100% - 98px);
    padding-left: 15px;
  }
  .history .year &gt; li ul &gt; li {
    overflow: hidden;
  }
  .history .year &gt; li ul &gt; li .date {
    display: inline-block;
    width: 52px;
    float: left;
  }
  .history .year &gt; li ul &gt; li span {
    display: inline-block;
    width: calc(100% - 52px);
    float: left;
  }

  .carta .title {
    background: 0;
    padding-bottom: 30px;
  }
  .carta .mean {
    padding-left: 0;
  }

  .scroll-area {
    margin-top: 0;
    padding: 15px;
  }
  .addition ul {
    display: none;
  }

  .common-tab &gt; li &gt; a {
    transition: none;
  }

  .login .title-box {
    height: inherit;
    padding: 25px 0;
  }
  .under ul {
    width: 100%;
  }
  .under ul &gt; li .btn {
    width: 100%;
    padding: 10px 0;
  }

  .login .title-box.mail {
    font-size: 0;
  }

  /* .intro-slide,
  .intro-slide &gt; li {
    width: 100% !important;
  } */
  /* .magazine-list &gt; li .figure {
    padding-bottom: 10px;
  } */
  /* .magazine-list &gt; li .figure img {
    height: auto;
  } */

  .member .clearfix .col-xs-12.col-sm-6 {
    margin-bottom: 25px;
  }
  .member .clearfix {
    margin-top: 25px;
  }

  .brochure .figure {
    display: none;
  }
  .brochure {
    height: inherit;
    margin-bottom: 0;
    padding: 15px;
  }
  .brochure .btn.xl {
    width: 100%;
    padding: 15px 0;
  }
  .brochure .figcaption {
    margin-bottom: 30px;
  }
  .brochure .figcaption .title {
    font-size: 1.7em;
  }

  .table-wrap table.full {
    width: 100%;
  }

  /* .magazine-list &gt; li {
    width: 31%;
    margin: 1%;
  } */
  .ebook {
    margin-top: 20px;
  }
  /* .ebook .bx-controls {
    display: none;
  } */

  .web {
    display: none;
  }
  .mobile {
    display: block;
  }

  #content h2.big {
    margin-bottom: 30px;
  }
  .captin-researcher .captin {
    padding-left: 15px;
  }
  .captin-researcher .captin .figcaption .short-cut {
    bottom: 0;
    left: -115px;
    top: inherit;
    right: inherit;
    display: none;
  }
  .captin-researcher .captin .figure img {
    width: 100%;
  }

  .bg-half {
    background: #efefef;
  }
  .bg-half img {
    width: 100%;
    padding: 0 15px;
    max-width: 338px;
  }
  .bg-half p {
    padding-left: 20px;
    margin-bottom: 15px;
  }
  .bg-half .btn {
    background-color: #fff;
    margin-left: 20px;
  }

  .web {
    display: none;
  }
  .mobile {
    display: block;
  }

  /* .magazine-list {
    height: inherit;
    padding: 0;
    margin: 0 -1%;
  } */

  .description .btns .btn {
    font-size: 13px;
    padding: 4px 7px;
  }
  #slider.photo-slide .figcaption .detail-view {
    display: block;
    position: relative;
    top: inherit;
    right: inherit;
    transform: none;
    text-align: center;
    max-width: 200px;
    margin: 20px auto 0;
  }
  .magazine-list {
    padding: 0;
  }
}

@media (max-width: 533px) {
  .human-wrap .sub-tit {
    font-size: 24px;
    line-height: 28px;
  }
  .human-wrap .cont {
    padding: 30px 0 20px;
  }
  .human-wrap .cont img {
    display: block;
    width: 100%;
    float: none;
    margin-right: 0;
  }
  .human-wrap .cont img:after {
    clear: both;
    display: block;
    content: '';
  }
  .human-wrap .cont p {
    margin-left: 0;
    padding-top: 10px;
  }
}

@media (max-width: 500px) {
  .contentInfo .satisfy {
    padding: 15px 0;
  }
  .contentInfo .satisfy .clearfix .grade &gt; li {
    width: 50%;
  }
  .contentInfo .satisfy .clearfix .opinion label {
    padding-left: 10px;
  }
  .contentInfo .satisfy .clearfix .opinion label:after {
    left: 0;
  }
}

@media (max-width: 415px) {
  .greeting .pull-right,
  .greeting.profile .pull-right {
    background-size: 100%;
    margin-bottom: 0;
  }
  .greeting .pull-right p {
    bottom: 0;
  }
  .greeting .pull-left .slogan {
    line-height: inherit;
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .history-director &gt; li .figure {
    float: inherit;
    width: 100%;
  }
  .history-director &gt; li .figure img {
    width: 100%;
  }
  .history-director &gt; li .figcaption {
    float: inherit;
    width: 100%;
    overflow: inherit;
    height: 210px;
  }
  .thumbBox-list &gt; li {
    width: 48%;
    margin-bottom: 2%;
  }
  .navi .container h1 {
    font-size: 1.5em;
  }
  .member.border .figure img {
    width: 100%;
  }
  .researcher {
    padding: 0 15px;
  }

  .human-wrap .list-cont {
    padding: 20px 20px;
  }
}

@media (max-width: 413px) {
  .ellipsis {
    width: 90%;
  }
  .snavigation .select-menu {
    font-size: 0.833em;
  }
  .snavigation .select-menu button {
    padding: 13px 0;
  }
  .search-area .form-control.lg {
    width: 49%;
  }
  /* #footer .rule&gt;li{font-size:0.833em;} */
  .history-director {
    margin: 0;
  }
  .history-director &gt; li {
    float: left;
    width: 100%;
    margin: 1.5% 0;
  }
  .history-director &gt; li .figure {
    background: #efefef;
  }
  .history-director &gt; li .figure img {
    width: 168px;
    display: block;
    margin: 0 auto;
  }
  .history-director &gt; li .figcaption {
    height: inherit;
  }
  .search-area .container {
    text-align: center;
  }
  .search-area .form-control.normal {
    width: 45%;
  }
  .search-area .form-control.lg {
    width: 49%;
  }
  .search-area .btn.search {
    width: 95%;
    /* margin-top: 4px; */
  }

  .intro .container {
    padding-top: 1px;
  }
  .part-info &gt; li {
    width: 95.5%;
  }
  .member .figure img {
    width: 100%;
  }
  .member .figcaption {
    padding-left: 15px;
  }
  .board_pager a {
    margin-right: 2px;
  }
}

@media (max-width: 365px) {
  .attached_org::after {
    display: none;
  }
  .org_list &gt; li:nth-child(2)::before {
    top: 60px;
    /*height: 82%;*/
  }
  .org_list &gt; li:nth-child(2)::after {
    top: 267px;
    left: 50.4%;
  }
}

/* 2020-07-27 */

.arrow-btn {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #b0b3c1;
  color: #fff;
}

.title-prev,
.title-next {
  text-indent: -9999px;
}

.title-prev {
  left: 32%;
}

.title-next {
  right: 32%;
}

.title-prev::before,
.title-next::before {
  display: block;
  font-family: 'xeicon';
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-indent: 0;
}

.title-prev::before {
  content: '\e93b';
}

.title-next::before {
  content: '\e93e';
}

@media (max-width: 1140px) {
  .search-area .container {
    padding: 0 1rem;
  }
}

@media (max-width: 999px) {
  .title-prev {
    left: 15px;
  }

  .title-next {
    right: 15px;
  }
}

@media (max-width: 767px) {
  .arrow-btn {
    width: 30px;
    height: 30px;
    top: 50%;
  }
}

/* 210908 서브페이지 화살표 버튼 제거 */
.depart-area .container {
  width: 1000px;
}
.cts-controls-direction {
  display: none;
}
.cts-controls-direction + .clearfix &gt; div &gt; p {
  /* padding: 14px 20px; */
}
/* //210908 서브페이지 화살표 버튼 제거 */

.ns .contentInfo {
  margin-left: 320px;
}

@media (max-width: 1080px) {
  .ns .contentInfo {
    margin-left: 0;
    margin-top: 30px;
  }
}

/* 210909 연구원발간물 페이지 리뉴얼 */
.common-tab.type2 + .common-tab.type2 {
  margin-top: -3px;
}
.common-tab.type2 &gt; li {
  border: 1px solid #bebebe;
  border-left: 0;
}
.common-tab.type2 &gt; li:first-child {
  border-left: 1px solid #bebebe;
}
.common-tab.type2 &gt; li &gt; a {
  color: #333;
}
.common-tab.type2 &gt; li.active &gt; a {
  color: #fff;
}
/* //210909 연구원발간물 페이지 리뉴얼 */

/* 210910 변경사항 */
body.ns .description .txts .title {
  font-size: 19px;
}
body.ns .description .txts .desc {
  font-size: 16px;
  font-weight: 200;
}
body.ns .description .txts .title span {
  font-size: 13px;
}
/* //210910 변경사항 */

/* 입찰공고 - 개찰결과획인 */
a[href^="http://www.g2b.go.kr"]
{
  position: absolute;
  bottom: 0;
}

@media (max-width: 560px) {
  a[href^="http://www.g2b.go.kr"]
  {
    position: absolute;
    bottom: -60px;
    left: 50%;
    margin-left: -75.5px;
  }
}
/* //입찰공고 - 개찰결과획인 */

#nth1,
#nth2 {
  margin-bottom: 10px;
}

.new_211013 &gt; div {
  width: 100%;
}
.new_211013 .thumbBox-list  { display: flex;gap:2rem; }
.new_211013 .thumbBox-list &gt; li {
  width: 20%;
  margin-left:0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.new_211013 .thumbBox-list &gt; li:first-child {
  margin-left: 0;
}

@media (max-width: 1280px) { 
    .new_211013 .thumbBox-list {
        flex-wrap: wrap;
        margin:0;
        width:calc(100% + 2rem);
      }
      .new_211013 .thumbBox-list &gt; li {
        width:calc(33.333% - 2rem);
        margin:0;
      }
}
@media (max-width:767px){
    .new_211013 .thumbBox-list &gt; li {  width:calc(50% - 2rem); }
}

/* esg경영 */
.esg { text-align: center;margin:30px 0 70px 0; }
.esg_list { margin-top:30px; }
.esg_list&gt;ul { display: flex;flex-direction: column; gap:6px; }
.esg_list&gt;ul&gt;li { padding:25px 30px; border-radius: 10px;background: #F5F8FB; }
.esg_list .common-list li { padding-left:15px;color: #333;
font-size: 20px;font-style: normal;font-weight: 500;line-height: 120%; /* 24px */letter-spacing: -0.6px; }
.esg_list .common-list li:after { width:6px;height: 6px;background: #115FAD;border-radius: 50%; top:10px; }
.esg_list .common-list li span { color:#00918C; }

/* 경영공시 다운로드 버튼 */
.title-btn { display: flex;align-items: center;margin:24px 0 10px 0; justify-content: space-between; }
.title-btn  h2 { margin:0; }
.down_btn { padding:5px 16px;display: inline-flex;gap:.8rem; background: #115FAD; justify-content: space-between; align-items: center; align-self: baseline; }
.down_btn span { color: #FFF;font-size: 16px;font-style: normal;font-weight: 500;line-height: normal; }
@media(max-width:480px){
    .title-btn { flex-direction: column; align-items: flex-start;gap:10px; }
}</pre></body></html>