* {outline: none !important;}
html {
  height: 100%;
  min-height: 100%;
}
body {
  height: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Raleway', sans-serif, "Nanum Gothic";
  font-size: 13px;
  color: #333;
  background: #fff;
}
a {text-decoration: none; color:#333;}
a:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
     color:#555;
}
a:hover,
a.hover,
a:focus,
a.focus {
    outline: none;
    text-decoration: none;
    color:#666;
}
ol, ul, li {
    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;
}
a,
img,
input {
    outline: none !important;
    selector-dummy: expression(this.hideFocus=true) !important;
}
textarea {
    width: 100%;
}
/* µå·¡±× ¼±ÅÃ ºí·Ï»ö»ó */
::selection {
    background:#aaa;
    color: #fff;
    text-shadow: none;
}
::-moz-selection {
    background:#aaa;
    color: #fff;
    text-shadow: none;
}
::-webkit-selection {
    background:#aaa;
    color: #fff;
    text-shadow: none;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.fl {float:left;}
.fr {float:right;}
.clear {clear:both;}
.center {text-align:center;}
.right {text-align:right;}
.pd5 {padding:5px;}
.pt10 {padding-top:10px;}
.pt15 {padding-top:15px;}
.pt20 {padding-top:20px;}
.pt30 {padding-top:30px;}
.pb30 {padding-bottom:30px;}
.pl5 {padding-left:5px;}
.pl10 {padding-left:10px;}
.pl20 {padding-left:20px;}
.mt10 {margin-top:10px;}
.mt15 {margin-top:15px;}
.mt20 {margin-top:20px;}
.mt30 {margin-top:30px;}
.mb10 {margin-bottom:10px;}
.mb15 {margin-bottom:15px;}
.mb20 {margin-bottom:20px;}
.mb30 {margin-bottom:30px;}
.ml5 {margin-left:5px;}
.ml10 {margin-left:10px;}
.ml30 {margin-left:30px;}
.mr10 {margin-right:10px;}
.mr20 {margin-right:20px;}
.mt50 {margin-top: 50px;}
.h100 {height: 100%;}
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  color: #333;
  font-weight: 400;
  margin: 0 0 30px;
}
.h3,
h3 {
  font-size: 22px;
}
.strong,
strong {
  font-weight: 600;
}
blockquote {
  font-size: 15px;
  background: #fafafa;
  margin: 0 0 30px;
  border-left: solid 1px #3498db;
}
p {
  margin: 0 0 30px;
}
.bg-gray {
  background: #f5f5f5;
}
.bg-img {
  background: #32323a;
}
.text-white {
  color: #fff;
}
.text-theme {
  color: #3498db;
}
.sub_content {
    padding: 30px 0;
}
.relative {
  position: relative !important;
}
.vertical-middle {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-container {
  z-index: 2;
  overflow: hidden;
}
.section {
  padding-top: 35px;
  padding-bottom: 40px;
}
.section-tb {
  padding-top: 30px;
  padding-bottom: 20px;
}
.section-content {
  margin-top: 35px;
}
.section-content2 {
  margin-top: 25px;
}
.section-title {
  margin-bottom: 10px;
}
.rounded {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
/*-----------------------------------------------------*/
/* Main Inputs */
/*-----------------------------------------------------*/
.form-control,
.form-control:hover,
.form-control.hover,
.form-control:focus,
.form-control.focus,
.form-control:active,
.form-control.active {
  height: auto;
  font-family: inherit;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: solid 1px #ececec;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 9px 20px;
}
/*-----------------------------------------------------*/
/* Animations */
/*-----------------------------------------------------*/
/* ZoomIn animation */
@-moz-keyframes animationZoomIn {
  from {
    -webkit-transform: scale(0.7) translateY(-100%);
    -moz-transform: scale(0.7) translateY(-100%);
    -ms-transform: scale(0.7) translateY(-100%);
    -o-transform: scale(0.7) translateY(-100%);
    transform: scale(0.7) translateY(-100%);
  }
  to {
    -webkit-transform: scale(1) translateY(none);
    -moz-transform: scale(1) translateY(none);
    -ms-transform: scale(1) translateY(none);
    -o-transform: scale(1) translateY(none);
    transform: scale(1) translateY(none);
  }
}
@keyframes animationZoomIn {
  from {
    -webkit-transform: scale(0.7) translateY(-100%);
    -moz-transform: scale(0.7) translateY(-100%);
    -ms-transform: scale(0.7) translateY(-100%);
    -o-transform: scale(0.7) translateY(-100%);
    transform: scale(0.7) translateY(-100%);
  }
  to {
    -webkit-transform: scale(1) translateY(none);
    -moz-transform: scale(1) translateY(none);
    -ms-transform: scale(1) translateY(none);
    -o-transform: scale(1) translateY(none);
    transform: scale(1) translateY(none);
  }
}
/* subMenu Animation */
@-webkit-keyframes animationSubMenu {
  from {
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes animationSubMenu {
  from {
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes animationSubMenu {
  from {
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/*-----------------------------------------------------*/
/* ½½¶óÀÌµå */
/*-----------------------------------------------------*/
#sub_slide {width: 100%; max-width: 100%; margin-left: auto; margin-right: auto; position:relative; margin: 0 auto; border-top:1px solid #efefef;}
.visual01 .carousel-inner .item {
    height: 250px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.visual01 .carousel-inner .item:before {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    z-index: 2;
}
.visual01 .carousel-caption {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: table;
    padding: 0px;
}
.visual01 #myCarousel .carousel-control .icon-menu-left {
    position: absolute;
    top: 45%;
    left: 20%;
    z-index: 5;
    display: inline-block;
    font-size: 20px;
    text-shadow: none;
    color: #333;
}
.visual01 #myCarousel .carousel-control .icon-menu-right {
    position: absolute;
    top: 45%;
    right: 20%;
    z-index: 5;
    display: inline-block;
    font-size: 20px;
    text-shadow: none;
    color: #333;
}
.visual01 #myCarousel .carousel-control .icon-menu-left::before {
  content: '\f053';
  font-family: 'FontAwesome', sans-serif;
}
.visual01 #myCarousel .carousel-control .icon-menu-right::before {
    content: '\f054';
    font-family: 'FontAwesome', sans-serif;
}
.visual01 #myCarousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: rgba(90, 90, 90, 0.6);
    border: 0px solid #333;
    border-radius: 0px;
    margin-bottom: -1px;
}
.visual01 #myCarousel .carousel-indicators li.active {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.9);
    border: 0px solid #000;
    border-radius: 0px;
}
.visual01 .carousel-caption .flex_caption1 {
    margin-left: auto; 
    margin-right: auto;
    position:absolute;
    z-index:30;
    left:55%;
    top:80%;
}
.visual01 .carousel-caption .flex_caption1 p {
    white-space: nowrap;
    text-transform:uppercase;
}
.visual01 .carousel-caption .flex_caption1 .slide-title {
    background:#fff;
    color: #555;
    display: inline-block;
    font-size:24px;
    font-weight: 600;
    padding: 2px 15px;
    border-radius: 0;
    text-shadow: none;
}
.visual01 .carousel-caption .flex_caption1 .slide-title2 {
    background:rgba(54, 58, 62, 0.7);
    color: #fff;
    display: inline-block;
    font-size:20px;
    font-weight: 500;
    padding: 2px 15px 5px 15px;
    border-radius: 0;
    margin-top:10px;
    text-shadow: none;
}
@media screen and (max-width: 767px) {
  #sub_slide {width:100%; margin-left: auto; margin-right: auto; position:relative;}
  .visual01 .carousel-inner .item {
      height: 180px; 
}
  .visual01 #myCarousel .carousel-control .icon-menu-left {
      left: 10%;
      font-size: 14px;
}
  .visual01 #myCarousel .carousel-control .icon-menu-right {
      right: 10%;
      font-size: 14px;
}
 .visual01 #myCarousel .carousel-indicators li {
     width: 9px;
     height: 9px;
     background-color: rgba(90, 90, 90, 0.6);
     border: 0px solid #888;
     border-radius: 0px;
}
 .visual01 #myCarousel .carousel-indicators li.active {
     width: 9px;
     height: 9px;
     background-color: rgba(0, 0, 0, 0.9);
     border: 0px solid #000;
     border-radius: 0px;
}
.visual01 .carousel-caption .flex_caption1 {
    left:44%;
}
.visual01 .carousel-caption .flex_caption1 .slide-title {
    background:#fff;
    color: #555;
    display: inline-block;
    font-size:16px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 0;
    text-shadow: none;
}
.visual01 .carousel-caption .flex_caption1 .slide-title2 {
    background:rgba(54, 58, 62, 0.7);
    color: #fff;
    display: inline-block;
    font-size:14px;
    font-weight: 500;
    margin-top: -35px;
    padding: 2px 10px 4px 10px;
    border-radius: 0;
    text-shadow: none;
}
}
/* ½½¶óÀÌµå */
.carousel-control.left,
.carousel-control.right {
    background-image: none;
}
/*--------------------------------------------------*/
/* goods_tab */
/*--------------------------------------------------*/
.goods_tab {width: 100%;}
.boards_tab {width: 100%;}
.menu-tabs {border-bottom: 1px solid #ebebeb;}
.menu-tabs > li {display: inline-block; margin-bottom: -1px;}
.menu-tabs > li > a {
    background:#f8f8f8;
    border:1px solid #ebebeb;
    margin:0;
    color:#333;
    border-radius:0;
}
.menu-tabs > li a:hover {
    border-color:#ebebeb;
    outline:none;
    background:#3498db;
    color:#fff;
    margin:0 0 -1px 0;
}
.menu-tabs > li.active > a {
    background:#3498db;
    border:1px solid #ebebeb;
    margin:0;
    color:#fff;
    border-radius:0;
}
.menu-tabs > li.active a:hover {
    border-color:#ebebeb;
    outline:none;
    background:#f8f8f8;
    color:#333;
    margin:0 0 -1px 0;
}
.menu-tabs > li.menu-tabs-tit > a, .menu-tabs > li.menu-tabs-tit > a:hover, .menu-tabs > li.menu-tabs-tit > a:focus {
    border-color:#ebebeb;
    outline:none;
    background:white;
    color:#3498db;
    margin:0 0 -1px 0;
    border-bottom:none;
    border-top: 1px solid #3498db;
}
/*--------------------------------------------------*/
/* TABS */
/*--------------------------------------------------*/
.nav-tabs {
    border:none;
}
.nav-tabs > li {margin-bottom: -1px;}
.nav-tabs > li > a {
    background:#f8f8f8;
    border:1px solid #ebebeb;
    margin:0;
    color:#333;
    border-radius:0;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    border-color:#ebebeb;
    outline:none;
    background:white;
    color:#3498db;
    margin:0 0 -1px 0;
    border-bottom:none;
    border-top: 1px solid #3498db;
}
.nav-tabs li.active, .nav-tabs li.active a, .nav-tabs li.active a:hover {
    border-top: 1px solid #3498db;
    color:#3498db;
}
ul.nav-tabs li a i {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}
.tab-content {
    border-top: 1px solid #ebebeb;
    padding:20px 14px;
}
.tab-content:first-child { display: block; }
.tab-content > h3 {
    color: #555333;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 0;
}
.tab-content > p {
    font-family: "Open Sans", Arial, "Nanum Gothic", Dotum, "µ¸¿ò", sans-serif;
    line-height: 20px;
}
/*-----------------------------------------------------*/
/* °øÅëÇÏ´Ü */
/*-----------------------------------------------------*/
.footer {
  border-top: solid 2px #555;
  padding-bottom: 10px;
}
.footer .bank {
  margin: 0;
  padding: 0 0 0 15px;
}
.footer .bank li {
  list-style: none;
  padding: 0;
  text-align:left;
}
.footer .bank .bank_info {color: #666; font-size: 20px; padding-bottom: 10px;}
.footer .e_service {
  padding-right: 10px;
}
.footer .e_service li {
  list-style: none;
  padding: 0;
  text-align:left;
}
.footer .e_service li a {color: #666;}
.footer .e_service li a:hover {color: #333;}
.footer .e_service .service_info {font-size: 20px; color: #555; padding-bottom: 10px;}
@media only screen and (min-width: 280px) and (max-width: 991px) {
 .footer .bank {margin-top: 20px;}
}
#footer {
    width: 100%;
    text-align: left;
}
#footer:after {
    content: '';
    display: block;
    clear: both;
}
#footer .inner {
    background-color: #f5f5f5;
    padding: 7px 0 7px 0;
}
#footer .inner2 {
    background-color: #fff;
    padding: 30px 0 10px 0;
    font-size: 12px;
    line-height: 20px;
    border-top: solid 1px #eee;
}
/*-----------------------------------------------------*/
/* °øÅëÇÏ´Ü : inner > util */
/*-----------------------------------------------------*/
#footer .inner .util {
    overflow: hidden;
    padding-top: 3px;
    padding-left: 18px;
}
#footer .inner .util li {
    float: left;
    padding-right: 20px;
    list-style: none;
}
#footer .inner .util li a {
    position: relative;
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    padding: 5px 0;
}
#footer .inner .util li a:hover {
    color: #333;
}
#footer .inner .util li a:after {
    content: '';
    position: absolute;
    top: 11px;
    right: -11px;
    width: 1px;
    height: 6px;
    background-color: #666;
}
#footer .inner .util li:last-child a:after {
    display: none;
}
#footer .inner2 .util2 a {
    color: #666;
}
#footer .inner2 .util2 a:hover {
    color: #333;
}
/* sns */
.sns {
  display: block;
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}
.sns li {
  display: inline-block;
}
.sns li a {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  margin: 0 5px 5px 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 16px;
  color: #888;
}
.sns li a:hover {
  text-decoration: none;
  color: #fff;
  background: #3498db;
}
.sns {float: right; padding: 0; height: 25px;}
/*INPUT*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #333333;
  border: 1px solid #e5e5e5;
  border-radius: 0;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #161616;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 5px;
}
textarea {overflow: auto; padding-left: 3px; vertical-align: top; width: 100%;}
input[type="image"] {
  border: none;
}
input[type="file"] {
  border: none;
}
input[name=member_img] {
  border: none; width: 80%;
}
select { height: 25px; margin: 1px 0 1px 5px; border:1px solid #e5e5e5;}
input, img, select {vertical-align:middle}
input.text {border:1px solid #e5e5e5;}
textarea.textarea {border:1px solid #e5e5e5;}
.checkbox, .radio { display: inline-block !important; }
input {margin:2px 0 2px 5px; padding:2px; color:#333; background:#fff;}
input.radio, 
input[type=radio] {margin:5px;}
input.check,
input[type=checkbox] {margin:5px;}
@media (max-width:767px) {
input#border.public_input.input_form { width: 80%; }
input[name=subject]#border { width: 80%; }
input[name=writer]#border { width: 80%; }
input[name=receiver_email]#border { width: 80%; }
input[name=addr].member_border { width: 90%; }
input[name=addr2].member_border { width: 90%; } 
select[name=pw_question].member_border { width: 80%; }
}
/*-----------------------------------------------------*/
/* ¹öÆ° */
/*-----------------------------------------------------*/
.btn,
.btn:hover,
.btn.hover,
.btn:focus,
.btn.focus,
.btn:active,
.btn.active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn {
    display: inline-block;
    padding: 4px 20px;;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0;
    background-image: none;
    color: #333;
}
.btn-grey {
 background-color: #666;
 border-color: #666;
 color: #fff;
 margin-top:4px;
}
.btn-grey:hover, .btn-grey:focus, .btn-grey:active, .btn-grey.active {
 background-color: #fff;
 border-color: #ccc;
 color: #333;
}
.btn-grey2 {
 background-color: #efefef;
 border-color: #ccc;
 color: #333;
 margin-top:4px;
}
.btn-grey2:hover, .btn-grey2:focus, .btn-grey2:active, .btn-grey2.active {
 background-color: #fff;
 border-color: #ccc;
 color: #333;
}
/*-----------------------------------------------------*/
/* ¹öÆ° */
/*-----------------------------------------------------*/
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}
.btn-default:active,
.btn-default.active {
  color: #333;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}
.btn-green { 
 background-color: #3498db;
 color: #fff;
 margin-top:4px;
 margin-bottom:20px;
 padding:7px 15px;
}
.btn-green:hover, .btn-green:focus, .btn-green:active, .btn-green.active {
 background-color: #3db1ff;
 color: #fff;
}
/*-----------------------------------------------------*/
/* FAQ */
/*-----------------------------------------------------*/
.panel-group .panel {
    border-radius: 0px;
    border:0px none;
    box-shadow: none;
}
.panel-heading{
    padding: 0;
}
.panel-title{
    position: relative;
    font-size: 14px;
}
.panel-title > a{
    border:1px solid #3498db;
    display: block;
    background: #3498db;
    color:#fff;
    padding: 12px 45px;
    text-overflow:ellipsis; white-space: nowrap; overflow: hidden;
}
.panel-title > a:hover,a:focus{
    text-decoration: none;
    outline: none;
}
.panel-title .left-icon{
    border-right:1px solid #fff;
    font-size: 24px;
    color:#fff;
    width: 40px;
    padding: 8px 0 7px 0;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
    position: absolute;
    left:0;
    top:0;
}
.panel-title a:after{
    content: "\f068";
    font-family: 'FontAwesome';
    float: right;
    font-size: 20px;
    margin-right: 20px;
    color:#fff;
    position: absolute;
    top:10px;
    right:0;
    display: inline-block;
}
.panel-title .collapsed:after{
    content: "\f067";
    color:#3498db;
}
.panel-title .collapsed{
    background: #fff !important;
    color:#6d6d6d;
    border-color:lightgray;
}
.panel-title .collapsed .left-icon{
    color:#3498db;
    border-color:lightgray;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body{
    border:1px solid #F1F1F1;
}
/*-----------------------------------------------------*/
/* º»¹® ÆäÀÌÁö */
/*-----------------------------------------------------*/
/*ÄÁÅÙÃ÷*/
#contents { width:100%; margin:0 auto; clear:both;}
.page-contents {padding:0; margin:0;}
.text-left {text-align:left; font-size:22px; color:#333; padding-left:10px;}
.text-tit-right {float:right; font-size:13px; color:#666; padding-right:20px;}
.text-tit-right a {color:#777;}
.text-tit-right a:hover {color:#333;}
.need {margin:0 5px 0 5px;}
.line-top {height: 1px; border-top:1px solid #eee; margin-top:18px; padding:0;}
.table-line {font-size:13px; color:#333; border-top:2px solid #666; margin-top:20px;}
/*-----------------------------------------------------*/
/* ÁÂÃø¸Þ´º */
/*-----------------------------------------------------*/
#aside_tit {clear: both; width:200px; background:#3498db;}
#aside_tit ul {font-size:22px;color:#fff;font-weight: 600;padding:8px 0 8px 25px;letter-spacing:-1px; text-transform: uppercase;}
#left_menu {width:200px; margin-top:20px; padding:0;}
#left_menu ul {padding:0;}
#left_menu li {font-size:15px; color:#333; border-bottom:1px solid #efefef; line-height:18px; padding:2px 0 2px 0;}
.left_menu_off a {  
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display:block; 
  padding:8px 0 8px 20px;
  color:#222222; 
  background:url(../../img/pure/side_b2.gif) no-repeat 180px 10px #ffffff;
}
.left_menu_on a { 
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display:block; 
  padding:8px 0 8px 20px;
  color:#ffffff;
  background:url(../../img/pure/side_b1.gif) no-repeat 180px 10px #777;
}
.left_menu_off a:hover {
  background:url(../../img/pure/side_b2.gif) no-repeat 180px 10px #eee;
}
.left_menu_on a:hover {
  color: #333;
  background:url(../../img/pure/side_b2.gif) no-repeat 180px 10px #eee;
}
/*left cs*/
.left_cs_box {width:200px; margin-top:50px; margin-bottom:30px; clear:both;}
.left_cs_box .cs_tit {color:#fff; font-size:16px; font-weight:bold; background-color:#aaaaaa; margin:0; padding:5px 0px 8px 10px;}
.left_cs_box .cs_tit_right {float:right; padding:5px 10px 0 0;}
.left_cs {background-color:#fff; border:1px solid #e1e1e1; padding:15px 0 20px 10px;}
.left_cs .cs_tel {font-family: 'Josefin Sans', sans-serif; font-size:28px; color:#666; margin:0; padding:0; letter-spacing:-1px;}
.left_cs .cs_tel2 {font-family: 'Josefin Sans', sans-serif; font-size:20px; color:#777; margin:0; padding-top:5px; letter-spacing:-1px;}
.left_cs .cs_tel2 .fax {font-size:13px; color:#777;}
@media (max-width: 991px) {
  #aside_tit, #left_menu, .left_menu_off a, .left_menu_on a, .left_cs_box {
    display: none !important; }
  }
/* °³ÀÎÁ¤º¸Ãë±Þ¹æÄ§ */
.privacy {width:100%; margin-bottom:20px;}
.privacy-con {width:100%; height:400px; font-size:12px; padding:5px;}
/* ÀÌ¿ë¾à°ü */
.agreement {width:100%; margin-bottom:20px;}
.agreement-con {width:100%; height:400px; font-size:12px; padding:5px;}
.shop_guide {float:left; width: 100%; text-align:left;}
/* º»¹®¸Þ´º */
.con_top_nav {display: block; width: 100%; text-align: center;}
@media (max-width:991px) {  
   #left_menu_shop {display:none;}
}
@media (min-width:992px) {
   .goods_tab {display:none;}
}
/* business_ban */
.business_ban {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
}
.business_ban img {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  max-width: 100%;
}
.business_ban:hover::after {
  -webkit-animation: 0.5s animationZoomIn;
  -o-animation: 0.5s animationZoomIn;
  animation: 0.5s animationZoomIn;
  opacity: 1.0;
}
.business_ban:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}