@charset "utf-8";

/* reset */
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, hgroup, 
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, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* -------------------------------- 

Primary style

-------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", tahoma;
  color: #3e454c;
  background-color: #ffffff;
}
body::after {
  clear: both;
  content: "";
  display: table;
}

a {
  color: #333;
  text-decoration: none;
}

input {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* -------------------------------- 

Main Page Content

-------------------------------- */
.cd-main-content .content-wrapper {
  padding: 45px 0 0;
  background:#efefef;
}
.cd-main-content::before {
  /* never visible - used to check MQ in jQuery */
  display: none;
  content: 'mobile';
}
@media only screen and (min-width: 768px) {
  .cd-main-content .content-wrapper {
    margin-left: 110px;
	padding-top: 50px;
  }
  .cd-main-content::before {
    content: 'tablet';
  }
}
@media only screen and (min-width: 1170px) {
  .cd-main-content .content-wrapper {
    margin-left: 200px;
  }
  .cd-main-content::before {
    content: 'desktop';
  }
}

/* -------------------------------- 

Header

-------------------------------- */
.cd-main-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 45px;
  width: 100%;
  background: #3e454c;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-main-header::after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (min-width: 768px) {
  .cd-main-header {
    position: fixed;
    height: 55px;
  }
}

.cd-logo {
  float: left;
  display: block;
  margin: 11px 0 0 5%;
  width:auto;
  color:#fff;
  line-height:25px;
}
@media only screen and (min-width: 768px) {
  .cd-logo {
    margin: 16px 0 0 36px;
  }
}

.cd-nav-trigger {
  /* navigation trigger - visible on mobile devices only */
  float: right;
  position: relative;
  display: block;
  width: 34px;
  height: 44px;
  margin-right: 5%;
  /* hide text */
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
}
.cd-nav-trigger span, .cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* hamburger icon in CSS */
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #ffffff;
}
.cd-nav-trigger span {
  /* line in the center */
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -2px;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* other 2 lines */
  content: '';
  right: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}
.cd-nav-trigger span::before {
  /* menu icon top line */
  top: -6px;
}
.cd-nav-trigger span::after {
  /* menu icon bottom line */
  top: 6px;
}
.cd-nav-trigger.nav-is-visible span {
  /* hide line in the center */
  background: rgba(255, 255, 255, 0);
}
.cd-nav-trigger.nav-is-visible span::before, .cd-nav-trigger.nav-is-visible span::after {
  /* keep visible other 2 lines */
  background: white;
}
.cd-nav-trigger.nav-is-visible span::before {
  -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
  transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.cd-nav-trigger.nav-is-visible span::after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  .cd-nav-trigger {
    display: none;
  }
}

.cd-search {
  position: relative;
  margin: 1.2em 5% 0.6em;
  overflow:hidden;
}
.cd-search.is-hidden {
  opacity: 0;
}
.cd-search::before {
  /* lens icon */
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background: url(./images/cd-search.svg) no-repeat 0 0;
}
.cd-search input {
  padding-left: 32px;
  width: 100%;
  height: 36px;
  border: none;
  border-radius: .25em;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-search input:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  .cd-search {
    float: left;
    display: inline-block;
    width: 250px;
    height: 100%;
    margin: 0 0 0 2.5em;
  }
  .cd-search.is-hidden {
    /* reset style */
    opacity: 1;
  }
  .cd-search::before {
    background-position: 0 -16px;
    left: 1em;
  }
  .cd-search form, .cd-search input {
    height: 100%;
    width: 100%;
  }
  .cd-search input {
    border: none;
    padding-left: 2.6em;
    border-radius: 0;
    background-color: #3e454c;
    border-left: 1px solid #51575d;
    color: #ffffff;
  }
  .cd-search input::-webkit-input-placeholder {
    color: #777c81;
  }
  .cd-search input::-moz-placeholder {
    color: #777c81;
  }
  .cd-search input:-moz-placeholder {
    color: #777c81;
  }
  .cd-search input:-ms-input-placeholder {
    color: #777c81;
  }
}

/* -------------------------------- 

Top Navigation

-------------------------------- */
.cd-nav {
  /* top nav - not visible on mobile devices */
  display: none;
}
@media only screen and (min-width: 768px) {
  .cd-nav {
    display: block;
    float: right;
    height: 100%;
  }
}

.cd-top-nav > li > a::before {
  /* reset style */
  display: none;
}
.cd-top-nav > li a {
  padding: 1em 5% !important;
}
.cd-top-nav img {
  /* avatar image */
  position: absolute;
  left: 1.8em;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: none;
}
@media only screen and (min-width: 768px) {
  .cd-top-nav {
    height: 100%;
  }
  .cd-top-nav a {
    display: block;
    font-size: 1.4rem;
    color: #ffffff;
  }
  .cd-top-nav > li {
    display: inline-block;
    margin-right: 1em;
    height: 100%;
  }
  .cd-top-nav > li:last-of-type {
    margin-right: 0;
  }
  .cd-top-nav > li a {
    padding: 1em .6em !important;
  }
  .cd-top-nav img {
    display: block;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-top-nav li:not(.has-children) a:hover {
    color: #1784c7;
  }

  .cd-logo{
    width:124px;
  }
}

/* -------------------------------- 

Sidebar

-------------------------------- */
.cd-side-nav {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  padding: 45px 0 0;
  background-color: #2c3136;
  visibility: hidden;
  opacity: 0;
  max-height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  transition: opacity 0.2s 0s, visibility 0s 0.2s;
}
.cd-side-nav.nav-is-visible {
  opacity: 1;
  visibility: visible;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
  transition: opacity 0.2s 0s, visibility 0s 0s;
  max-height: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.cd-side-nav > ul {
  padding: 0.6em 0;
}
.cd-side-nav > ul:last-of-type {
  padding-bottom: 0;
}
.cd-side-nav .cd-label, .cd-side-nav a {
  display: block;
  padding: 1em 5%;
}
.cd-side-nav .cd-label {
  text-transform: uppercase;
  font-weight: bold;
  color: #646a6f;
  font-size: 1rem;
  letter-spacing: .1em;
}
.cd-side-nav a {
  position: relative;
  color: #ffffff;
  font-size: 1.4rem;
}
.cd-side-nav ul.cd-top-nav > li:last-of-type > a {
  border-bottom: none;
}
.cd-side-nav > ul > li > a {
  padding-left: calc(5% + 24px);
  border-bottom: 1px solid #373d44;
}
.cd-side-nav > ul > li > a::before {
  /* icon before item name */
  position: absolute;
  content: '';
  left: 5%;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background: url(./images/cd-nav-icons.svg) no-repeat 0 0;
}
.cd-side-nav > ul > li.overview > a::before {
  background-position: -64px 0;
}
.cd-side-nav > ul > li.notifications > a::before {
  background-position: -80px 0;
}
.cd-side-nav > ul > li.comments > a::before {
  background-position: -48px 0;
}
.cd-side-nav > ul > li.bookmarks > a::before {
  background-position: -32px 0;
}
.cd-side-nav > ul > li.images > a::before {
  background-position: 0 0;
}
.cd-side-nav > ul > li.users > a::before {
  background-position: -16px 0;
}
.cd-side-nav .count {
  /* notification badge */
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(5% + 16px + 0.4em);
  padding: 0.2em 0.4em;
  background-color: #ff7e66;
  border-radius: .25em;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}
.cd-side-nav .action-btn a {
  display: block;
  margin: 0 5%;
  padding: 1em 0;
  background-color: #1784c7;
  border-radius: .25em;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
.cd-side-nav .action-btn a::before {
  display: none;
}
@media only screen and (min-width: 768px) {
  .cd-side-nav {
    position: relative;
    float: left;
    top: auto;
    width: 110px;
    min-height: 100vh;
    padding-top: 55px;
    /* reset style */
    visibility: visible;
    opacity: 1;
    overflow: visible;
    max-height: none;
  }
  .cd-side-nav.nav-is-visible {
    box-shadow: none;
  }
  .cd-side-nav.is-fixed {
    position: fixed;
  }
  .cd-side-nav > ul {
    /* reset style */
    padding: 0;
  }
  .cd-side-nav .cd-label {
    /* remove labels on minified version of the sidebar */
    display: none;
  }
  .cd-side-nav a {
    font-size: 1.2rem;
    text-align: center;
  }
  .cd-side-nav > ul > li > a {
    padding: calc(2.2em + 24px) 0 2.4em;
  }
  .cd-side-nav > ul > li > a::before {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 2.4em;
  }
  .cd-side-nav .active > a {
    /* current page */
    box-shadow: inset 3px 0 0 #1784c7;
    background-color: #33383e;
  }
  .cd-side-nav .action-btn a {
    margin: 1em 10% 0;
  }
  .cd-side-nav .count {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    padding: 0;
    top: 2em;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: calc(50% + 5px);
    right: auto;
    color: transparent;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-side-nav {
    width: 200px;
  }
  .cd-side-nav > ul {
    padding: 0.6em 0;
  }
  .cd-side-nav > ul > li:not(.action-btn):hover > a {
    background-color: #33383e;
  }
  .cd-side-nav > ul > li > a {
    padding: 1em 1em 1em 42px;
    text-align: left;
    border-bottom: none;
  }
  .cd-side-nav > ul > li > a::before {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 18px;
  }
  .cd-side-nav .cd-label {
    display: block;
    padding: 1em 18px;
  }
  .cd-side-nav .action-btn {
    text-align: left;
  }
  .cd-side-nav .action-btn a {
    margin: 0 18px;
  }
  .no-touch .cd-side-nav .action-btn a:hover {
    background-color: #1a93de;
  }
  .cd-side-nav .count {
    /* reset style */
    color: #ffffff;
    height: auto;
    width: auto;
    border-radius: .25em;
    padding: .2em .4em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 18px;
    left: auto;
    box-shadow: none;
  }
}

.has-children ul {
  position: relative;
  width: 100%;
  display: none;
  background-color: #1c1f22;
}
.has-children > a::after {
  /* arrow icon */
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  right: 5%;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(./images/cd-arrow.svg);
}
.has-children.selected > ul {
  display: block;
}
.has-children.selected > a::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
@media only screen and (min-width: 768px) {
  .has-children {
    position: relative;
  }
  .has-children ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: 180px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  .has-children ul a {
    text-align: left;
    border: none;
    padding: 1em;
	text-overflow : clip;
   overflow : hidden; 
   white-space : nowrap;
  }
  .no-touch .has-children ul a:hover {
    color: #1784c7;
  }
  .has-children > a::after {
    display: none;
  }
  .cd-side-nav .has-children.selected > a {
    /* focus state -> show sub pages */
    background-color: #33383e;
  }
  .cd-top-nav .has-children {
    position: relative;
    background-color: #2c3136;
  }
  .cd-top-nav .has-children > a {
    height: 100%;
    padding: 0 calc(1.8em + 22px) 0 calc(1.8em + 26px) !important;
    line-height: 55px;
  }
  .cd-top-nav .has-children > a::after {
    display: block;
    right: 1.8em;
  }
  .cd-top-nav .has-children ul {
    background-color: #1c1f22;
    width: 200px;
    top: 100%;
    right: 0;
    left: auto;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  }
  .cd-top-nav .has-children ul a {
    padding-left: 18px !important;
  }
}
@media only screen and (min-width: 1170px) {
  .has-children > ul {
    width: 100%;
    z-index: 1;
  }
  .has-children ul a {
    padding-left: 18px;
  }
  .has-children.active > ul {
    /* if the item is active, make the subnavigation visible */
    position: relative;
    display: block;
    /* reset style */
    left: 0;
    box-shadow: none;
  }
  .no-touch .cd-side-nav .has-children:hover > ul, .cd-side-nav .has-children.hover > ul {
    /* show subnavigation on hover */
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* User css */
.res_div,.res_tab{display:none}

#tistorytoolbarid { display:none }

/* global */
#dkIndex {overflow:hidden;position:absolute;left:-9999px;width:0;height:1px;margin:0;padding:0} /* 스킵네비게이션 */
.ir_pm {display:block;overflow:hidden;font-size:0px;line-height:0;text-indent:-9999px} /* 사용된 이미지내 의미있는 텍스트의 대체텍스트를 제공할때 */
.ir_wa {display:block;overflow:hidden;position:relative;z-index:-1;width:100%;height:100%} /* 중요한 이미지 대체텍스트로 이미지off시에도 대체 텍스트를 보여주고자 할때 */
.screen_out {overflow:hidden;position:absolute;width:0;height:0;line-height:0;text-indent:-9999px} /* 대체텍스트가 아닌 접근성을 위한 숨김텍스트를 제공할때 */

/* 개발자 추가 css*/
img{border:0;vertical-align:middle;max-width:100%;height:auto}
.dno{display:none}
.don{display:block}
.csr{cursor:pointer}

/* button */
a.btn{padding:7px 10px;background:#fefefe;color:#444;border:1px solid #ddd;white-space:nowrap;position:relative;display:inline-block;cursor:pointer;font-family:tahoma;font-size:12px}
a.btn_sub{background:#3176b1;border-color:#366790;padding:5px 10px;color:#fff}
a.btn_sub:hover{background:#296191;color:#fff}

/* s_list */
.s_list{padding:25px;line-height:30px;height:30px;font-size:18px;color:#333;margin:0;width:auto;display:block;font-family:'Noto Sans';background:#fff;font-weight:normal}
.s_list em{font-family: Helvetica;color:#fd2100;font-style:normal;margin-right:3px}

/* cotainer */
#container{}
#content{padding:0}
#content:after{display:block;clear:both;content:''}

/* footer */
#footer { clear:both; width: auto; padding: 20px 0; background:#fff; border-top: 1px solid #ccc;text-align:center}
#footer .copyright {; font-family: 'Noto Sans';  font-size: 13px; padding: 0; margin: 0; }
#footer .copyright p, #footer .copyright p a { color: #55 }
#footer .copyright .tistory, #footer .copyright .tistory a { color: #555; }
#footer ul{margin:0 0 5px}
#footer ul li{display:inline;position:relative;padding:0 5px 0 7px;font-size:12px;white-space:nowrap}
#footer ul li a{color:#333}
#footer ul li a:hover,#footer ul li a:hover strong{color:#f00}
#footer ul li.first{padding:0 3px 0 0;background:none}

/* article_skin  */
.list_wrap{padding:0}
.list_wrap:after{display:block;clear:both;content:''}

/* list_content */
#lst_gal .list_content {float:left;width:300px;margin:25px 0 0 25px;background:#fff}

#lst_gal .list_content .thumb {display:block;overflow:hidden;position:relative;color:#333;width:300px !important;text-align:center;border:0 !important;background:#fafafa;line-height:172px;text-align:center;white-space:nowrap}
#lst_gal .list_content .thumb img {width:auto;border:0}
#lst_gal .list_content strong{display:block;width:auto;border-top:0;border-bottom:0;color:#222;line-height:28px;padding:0 20px 0;font-family:'Open Sans',NanumGothic,'Malgun Gothic',tahoma;font-size:14px;font-weight:normal}
#lst_gal .list_content p{display:normal;color:#666;border-top:0;border-bottom:0;font-size:11px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;;height:24px;line-height:24px;padding:0 20px 5px}
#lst_gal .list_content p span.date{margin-left:10px}
#lst_gal .list_content a:hover strong{color:#DB4A3F}
#lst_gal .list_content .txt_post{display:none}
#lst_gal .list_content  strong{margin-top:10px}
#lst_gal .list_content  p.txt_info{margin-bottom:5px}

#lst_web .list_content{padding:15px;vertical-align:top;*zoom:1;margin:0 0 20px;background:#fff}
#lst_web .list_content:after{display:block;clear:both;content:""}
#lst_web  a{text-decoration:none;cursor:pointer}
#lst_web  a strong{display:inline-block;margin:0 0 4px 0;color:#333}
#lst_web  a strong{color:#222;font-family:'Open Sans',NanumGothic,'Malgun Gothic',tahoma;font-size:18px;line-height:25px;max-height:50px;font-weight:normal;overflow:hidden}
#lst_web  a:hover strong{color:#DB4A3F}
#lst_web .list_content p span.date{margin-left:10px;color:#888;font-size:12px}
#lst_web .list_content p span.cate{color:#5296CB;font-size:12px}
#lst_web  .thumb{display:block;overflow:hidden;position:relative;width:auto;margin:0;max-height:400px;margin-bottom:10px}
#lst_web  .thumb img{border:0;width:auto;height:auto;max-width:100%}
#lst_web  p.txt_post{margin:0;color:#777;line-height:24px;font-size:13px}
#lst_web  p.txt_post{line-height:22px;font-size:12px;}
#lst_web  p.txt_info{line-height:28px}

#lst_gal .list_content:hover{margin:22px -3px -3px 22px;border:3px solid #fff;-moz-box-shadow:0 0 5px #666;-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}
/*
#lst_web  .list_content .thumb:hover{margin:-3px -319px -3px 12px;border:3px solid #fff;-moz-box-shadow:0 0 5px #666;-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}

/*skin_view */
.skin_view{width:auto;padding-top:5px}
.skin_view:after{display:block;clear:both;content:''}
.skin_view .area_title{background:#fff}
.skin_view .tit_post{text-align:left;font-size:24px;color:#fff;background:#6C7A89;font-family:'Noto Sans';padding:25px;padding-bottom:0}
.skin_view .tit_post a{color:#fff}
.skin_view .tit_date{text-align:left;font-size:10px;font-weight:bold;color:#fff;background:#6C7A89;font-family:tahoma;padding:25px;padding-top:5px}
.skin_view .txt_detail{padding:15px 25px 25px;font-size:12px;font-family:tahoma;color:#666}
.skin_view .txt_detail a{color:#666;margin-left:8px}
.skin_view .txt_detail span{color:#444}
.skin_view .area_view{line-height:2;background:#fff;padding:0 25px 5px;font-size:12px;color:#555;font-family:tahoma}
.skin_view .area_etc{background:#fff;padding:0 25px 25px}
.skin_view .area_etc:after{display:block;clear:both;content:''}
.skin_view .area_etc .list_tag{float:left;margin-top:5px;font-weight:bold;}
.skin_view .list_tag .tit_tag{float:left;margin-right:8px;font-weight:bold;font-size:12px;color:#3db39e}
.skin_view .list_tag .desc_tag{float:left;margin-right:2px;font-weight:bold;font-size:12px;color:#aaa;max-width:630px}
.skin_view .list_tag .desc_tag a{color:#aaa}
.skin_view .list_tag .link_tag{font-weight:bold;font-size:12px;color:#aaa}
.skin_view .list_tag .link_tag:hover{text-decoration:none}

.skin_view .area_view pre { background-color:#F6F7F8; margin:28px auto; padding:16px; word-wrap: break-word; font-family: Menlo,Consolas,Monaco,monospace; font-size:14px; line-height:20px}
.skin_view .area_view iframe { max-width:100% }

.skin_view .area_view img { max-width:100%; height:auto }
.skin_view .area_view .imageblock {width:auto !important; height:auto !important}

.skin_view .area_view .protected_form { text-align:center; padding: 100px 0 150px; margin-bottom:-20px }
.skin_view .area_view .protected_form p{ line-height:40px}
.skin_view .area_view .protected_form input { -webkit-appearance: none; padding:0 15px; border: 1px solid #eee; height:38px; line-height:38px; font-size: 12px; box-sizing: border-box;}
.skin_view .area_view .protected_form button { border-radius: 4px; font-size: 12px; line-height: 38px; background-color: #3db39e; color: #fff; font-weight: bold; padding: 0 16px }

.skin_view .list_share{display:none}
#protected{padding-bottom:25px;border-bottom:1px solid #ddd}

/* reply */
.area_reply{margin-top:15px}
.area_reply .cmt_title{font-size:18px;;font-family:'Malgun Gothic',sans-serif;color:#333;padding:10px 25px;margin-bottom:0}
.area_reply .cmt_title .cnt{font-family: Helvetica;color:#fd2100}
.area_reply .btn_replymore{display:none}

/* comment */
.comment                          { width:auto;padding:0;overflow:hidden;}
.commentWrite                     { overflow: hidden; color:#666; padding:0 25px}
.commentWrite #guest		      { margin:0}
.commentWrite #guest p			  { padding-top:15px}
.commentWrite #guest p.first		  { padding-top:0}
.commentWrite #guest p.last		  { padding-bottom:0}
.commentWrite .sdiv			  {*zoom:1;padding:15px 0 0;margin:0}
.commentWrite #sdiv:after			  { content:"";display:block;clear:both}
.commentWrite .fr		  { float:right}
.commentWrite .fl		  { float:left}
.commentWrite input               { width:300px; padding:10px; border:1px solid #eaeaea; background:#fff}
.commentWrite .lb{width:auto;padding:0;margin:0;display:block;padding-right:22px;_padding:0;margin-bottom:0;border:1px solid #ddd}
.commentWrite textarea            {border:0;width:100%;height:120px;background:#fff;padding:10px;margin:0 ;overflow:auto}
.commentWrite .btn_bsub       {padding:7px 10px;font-size:12px;border:0;background:#3176b1;color:#fff;margin:0;cursor:pointer}
.commentWrite .homepage           { width:300px;}
.commentWrite .secretWrap         { padding:10px 0 15px}
.commentWrite .checkbox           {	border:none; padding:0; margin:0; width:25px;background:transparent}

/* Default */
.cb_module{font-family:'돋움',Dotum,'굴림',Gulim,AppleGothic,Sans-serif;font-size:12px;font-weight:normal;line-height:14px}
.cb_module p,.cb_module h1,.cb_module h2,.cb_module h3,.cb_module h4,.cb_module h5,.cb_module h6,.cb_module ul,.cb_module ol,.cb_module li,.cb_module dl,.cb_module dt,.cb_module dd,.cb_module table,.cb_module th,.cb_module td,.cb_module form,.cb_module fieldset,.cb_module legend,.cb_module input,..cb_module button,.cb_module select{margin:0;padding:0}
.cb_module img{border:none}
.cb_module a{color:#333;text-decoration:none}
.cb_module a:hover,.cb_module a:active,.cb_module a:focus{text-decoration:underline}

/* Common Selector */
.cb_module .cb_nick_name{display:inline-block;*display:inline;padding-left:1px;color:#444}
.cb_module .cb_nick_name a{display:inline-block;_position:relative;margin:-1px 0 0;color:#333;font-size:12px;font-weight:bold;letter-spacing:-1px}

/* Comment Input Area */
.cb_module{margin:0 auto;text-align:left}
.cb_module .cb_wrt{zoom:1}

/* Comment list */
.cb_module .cb_lstcomment {width:auto;padding:0 25px}
.cb_module .cb_lstcomment li{position:relative;vertical-align:top;zoom:1;background:#fff;margin-top:25px;border:1px solid #ddd}
.cb_module .cb_lstcomment .cb_section span,.cb_module .cb_lstcomment .cb_section div,.cb_module .cb_lstcomment .cb_section a,.cb_module .cb_lstcomment .cb_section em,.cb_module .cb_lstcomment .cb_section input,.cb_module .cb_lstcomment .cb_section td{vertical-align:middle}
.cb_module .cb_lstcomment .cb_bu_subnode{overflow:hidden;position:absolute;top:7px;left:6px;width:14px;height:14px;color:#9e9e9e;font-family:'돋움',dotum;font-size:20px;vertical-align:baseline}
.cb_module .cb_lstcomment .cb_date{color:#aaa;font-family:tahoma;font-size:11px}
.cb_module .cb_lstcomment .cb_nick_name{font-family:tahoma}
.cb_module .cb_lstcomment .cb_date{margin-right:4px;}
.cb_module .cb_lstcomment .edit{margin-right:4px;font-size:11px}
.cb_module .cb_lstcomment .reply{margin-right:4px;font-size:11px}
.cb_module .cb_lstcomment .cb_section a span{vertical-align:baseline}
.cb_module .cb_lstcomment .cb_info_area{overflow:hidden;padding:3px 0 5px;zoom:1}
.cb_module .cb_lstcomment .cb_section{margin-top:8px;margin-left:15px}
.cb_module .cb_lstcomment .cb_dsc_comment{overflow:hidden;clear:both;padding:0 0 10px 1px;color:#555;line-height:20px;margin-left:15px}

/* Comment Depth Control - Large Thumb */
.cb_module .cb_lstcomment li li{clear:both;position:relative;padding-bottom:0;border:0;margin-top:0;border-top:1px dashed #dfdfdf !important}
.cb_module .cb_lstcomment li li.cb_thumb_on .cb_thumb{left:30px}
.cb_module .cb_lstcomment li ul li .cb_section,.cb_module .cb_lstcomment li ul li .cb_dsc_comment{margin-left:0}
.cb_module .cb_lstcomment li li li{position:relative;margin-left:20px}
.cb_module .cb_lstcomment .cb_thumb_off .cb_comment_area{padding-left:0}
.cb_module .cb_lstcomment li .cb_thumb_off ul{margin-left:-20px}
.cb_module .cb_lstcomment .cb_thumb_off li.cb_thumb_off{padding-left:30px}

/* paging */
#paging {padding:25px 0;display:block;text-align:center;line-height:normal}

#paging a {margin:0 4px}
#paging a span{display:inline-block;background:#fff;padding:6px 10px;color:#555;height:16px;line-height:16px;font-size:12px;font-family:tahoma}
#paging .selected {background:#649AE1;color:#fff}
#paging #prevPage,#paging #nextPage{display:inline-block;background:#fff;padding:6px 10px;color:#555;height:16px;line-height:16px;font-size:12px;font-family:tahoma}
#paging #prevPage span,#paging #nextPage span{display:inline;padding:0;height:auto;line-height:auto}
#paging .no-more-prev,#paging .no-more-next{display:none}
#paging a:hover span{background:#484D61;color:#fff}
#paging a#prevPage:hover,#paging a#nextPage:hover{background:#484D61;color:#fff}
#paging a#prevPage:hover span,#paging a#nextPage:hover span{background:#484D61;color:#fff}

/* another_category */
div.another_category{margin-top:35px;padding-top:5px;margin-bottom:0 !important;border:0 !important;border-top:1px solid #ddd !important;font-family:tahoma}
div.another_category h4 a{color:#222 !important;font-size:16px !important;margin:0 !important;font-family:font-family:'Open Sans',NanumGothic,'Malgun Gothic',tahoma !important;}
div.another_category h4{margin:0px !important;color:#777 !important;padding:10px 0 0!important;font-size:12px;line-height:normal;spacing:-1px;font-family:'Open Sans',NanumGothic,'Malgun Gothic',tahoma !important;margin-left:5px;border:0 !important;}
div.another_category table{border:0 !important;margin:0 !important;background:#fff}
div.another_category table td{display:none}
div.another_category th a{margin-left:5px;color:#333 !important;padding-left:8px;background:url(images/bu.gif) no-repeat 0 8px;}
div.another_category th a.current{border-bottom:0 !important}
div.another_category th span{color:#f00 !important}
div.another_category th{padding-bottom:8px}
div.another_category table th{padding-bottom:8px !important;}
div.another_category tr:first-child th{padding-top:8px !important;}
div.another_category table th a:hover{color:#f00 !important;}

/* skin_tag */
.skin_tag .list_tag{overflow:hidden;padding:25px}
.skin_tag .list_tag li{float:left;margin:0 10px 10px 0}
.skin_tag .link_tag{display:block;height:32px;padding:0 13px;border-radius:34px;line-height:34px;border:1px solid #f0f0f0; background-color:#fff;font-weight:100;color:#666}
.skin_tag .link_tag:hover{border:1px solid #3db39e;background-color:#fff;text-decoration:none;color:#3db39e}

/* guest */
.grz_gst{margin:25px 25px 0;width:auto}
.grz_gst blockquote {background:#f9f9f9;border-left:10px solid #6C7A89;margin:0; padding:10px;quotes: "\201C""\201D""\2018""\2019";display:block;line-height:25px}
.grz_gst blockquote span.bef{color: #ccc;font-size: 4em;line-height: 0.1em;margin-right: 0.25em;vertical-align: -0.4em;}
.grz_gst blockquote:after{content: "";display:block;clear:both}
.grz_gst blockquote p {display:inline;font-size:12px;}
.grz_gst .blk{display:block;font-size:12px}
.grz_gst .blk .ml10{margin-left:10px}
.grz_gst .gst_list{margin:25px 0 0}
.grz_gst .gst_rest{margin:0 0 0 25px;border-top:1px solid #ddd}
.grz_gst .gst_rest blockquote {border-left-color:#8DB255}

@media (max-width:479px){
	#paging a{display:none}
	#paging #prevPage span,#paging #nextPage span{display:inline}
}