@charset "utf-8";
html{
	font-family:'NanumSquare';
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
@font-face {
    font-family: 'NanumSquare';
	font-weight: 300;
	font-style: normal;
	src: url(../font/NanumSquareR.eot);
	src: local('NanumSquareL'),
		url(../font/NanumSquareL.eot?#iefix) format('embedded-opentype'), 
		url(../font/NanumSquareL.woff2) format('woff2'), 
		url(../font/NanumSquareL.woff) format('woff'),
		url(../font/NanumSquareL.ttf) format('truetype');
}
@font-face {
    font-family: 'NanumSquare';
	font-weight: normal;
	font-style: normal;
	src: url(../font/NanumSquareR.eot);
	src: local('NanumSquareR'),
		url(../font/NanumSquareR.eot?#iefix) format('embedded-opentype'), 
		url(../font/NanumSquareR.woff2) format('woff2'), 
		url(../font/NanumSquareR.woff) format('woff'),
		url(../font/NanumSquareR.ttf) format('truetype');
}
@font-face {
    font-family: 'NanumSquare';
	font-weight: bold;
	font-style: normal;
	src: url(../font/NanumSquareB.eot);
	src: local('NanumSquareB'),
		url(../font/NanumSquareB.eot?#iefix) format('embedded-opentype'), 
		url(../font/NanumSquareB.woff2) format('woff2'), 
		url(../font/NanumSquareB.woff) format('woff'),
		url(../font/NanumSquareB.ttf) format('truetype');
}
/* font size media queries */
@media screen and (max-width: 1023px){
	html {
		font-size: 9px;
		line-height: 1em;
	}
}
@media (min-width: 1024px) and (max-width: 1279px) {
	html {
		font-size: 10px;
		line-height: 1em;
	}
}
@media (min-width: 1280px) and (max-width: 1365px){
	html {
		font-size: 11px;
		line-height:1em;
	}
}
@media (min-width: 1366px) and (max-width: 1439px){
	html {
		font-size: 12px;
		line-height: 1em;
	}
}
@media (min-width: 1440px) and (max-width: 1679px){
	html {
		font-size: 13px;
		line-height: 1em;
	}
}
@media (min-width: 1680px) and (max-width: 1919px){
	html {
		font-size: 14px;
		line-height: 1em;
	}
}
@media (min-width: 1920px) and (max-width: 2119px){
	html {
		font-size: 15px;
		line-height: 1em;
	}
}
@media (min-width: 2120px) and (max-width: 2399px){
	html {
		font-size: 16px;
		line-height: 1em;
	}
}
@media (min-width: 2400px) and (max-width: 2559px){
	html {
		font-size: 17px;
		line-height: 1em;
	}
}
@media (min-width: 2560px){
	html {
		font-size: 18px;
		line-height: 1em;
	}
}
/*  TABS  */
.nav-tabs {
  border-bottom: 1px solid #dddddd;
}

.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
}

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified > li {
  float: none;
}

.nav-tabs.nav-justified > li > a {
  text-align: center;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}

.tab-content > .active,
.pill-content > .active {
  display: block;
}

@media (min-width: 769px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
}

.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-bottom: 1px solid #dddddd;
}

.nav-tabs.nav-justified > .active > a {
  border-bottom-color: #ffffff;
}

.nav-pills > li {
  float: left;
}

.nav-pills > li > a {
  border-radius: 5px;
}

.nav-pills > li + li {
  margin-left: 2px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #428bca;
}

/*  END OF TAPS*/

/*  DROPDOWN  */
  /*
  .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  }

  .dropdown {
  position: relative;
  }

  .dropdown-toggle:focus {

  outline: 0;
  }

  .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  }

  .dropdown-menu.pull-right {
  right: 0;
  left: auto;
  }

  .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
  }

  .dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
  }

  .dropdown-menu > li > a:hover,
  .dropdown-menu > li > a:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #428bca;
  }

  .dropdown-menu > .active > a,
  .dropdown-menu > .active > a:hover,
  .dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #428bca;
  outline: 0;
  }

  .dropdown-menu > .disabled > a,
  .dropdown-menu > .disabled > a:hover,
  .dropdown-menu > .disabled > a:focus {
  color: #999999;
  }

  .dropdown-menu > .disabled > a:hover,
  .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  }

  .open > .dropdown-menu {
  display: block;
  }

  .open > a {
  outline: 0;
  }

  .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #999999;
  }

  .dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
  }

  .pull-right > .dropdown-menu {
  right: 0;
  left: auto;
  }

  .dropup .caret,
  .navbar-fixed-bottom .dropdown .caret {
  border-top: 0 dotted;
  border-bottom: 4px solid #000000;
  content: "";
  }

  .dropup .dropdown-menu,
  .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
  }

  .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-bottom: 0 dotted;
  border-left: 4px solid transparent;
  content: "";
  }

  @media (min-width: 769px) {
  .navbar-right .dropdown-menu {
  right: 0;
  left: auto;
  }
  } 

  .navbar-nav .dropdown .dropdown-menu li{
  width:100%;
  text-align:left;
  }

  .navbar-nav .dropdown .dropdown-menu li a{
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
  width:100%;
  margin-left:0;
  margin-right:0;
  }
  */
/*  END OF DROPDOWN  */


/*  CAROUSEL  */
.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
          transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  height: auto;
  max-width: 100%;
  line-height: 1;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.carousel-control.left {
  background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control:hover,
.carousel-control:focus {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: inline-block;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  font-family: serif;
}

.carousel-control .icon-prev:before {
  content: '\2039';
}

.carousel-control .icon-next:before {
  content: '\203a';
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  border: 1px solid #ffffff;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #ffffff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 769px) {
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    font-size: 30px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}

/*  END OF CAROUSEL  */

/*  PAGING  */

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: #eeeeee;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  cursor: default;
  background-color: #428bca;
  border-color: #428bca;
}

.pagination > .disabled > span,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999999;
  cursor: not-allowed;
  background-color: #ffffff;
  border-color: #dddddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

.pager:before,
.pager:after {
  display: table;
  content: " ";
}

.pager:after {
  clear: both;
}

.pager:before,
.pager:after {
  display: table;
  content: " ";
}

.pager:after {
  clear: both;
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 15px;
}

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999999;
  cursor: not-allowed;
  background-color: #ffffff;
}

/*  END OF PAGING  */

/*  MODAL  */

.modal-open {
  overflow: hidden;
}

body.modal-open,
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
  margin-right: 15px;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: none;
  overflow: auto;
  overflow-y: scroll;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
          transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
     -moz-transition: -moz-transform 0.3s ease-out;
       -o-transition: -o-transform 0.3s ease-out;
          transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-dialog {
  z-index: 1050;
  width: auto;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  min-height: 16.428571429px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 20px;
}

.modal-footer {
  padding: 19px 20px 20px;
  margin-top: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

.modal-footer:after {
  clear: both;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media screen and (min-width: 769px) {
  .modal-dialog {
    right: auto;
    left: 50%;
    width: 600px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}

/*  END OF MODAL  */

/*  THUMBNAIL-BOX 썸네일박스  */

.thumbnail-box {
  display: inline-block;
  display: block;
  height: auto;
  max-width: 100%;
  padding: 4px;
  line-height: 1.428571429;
  background-color:transparent;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}

.thumbnail-box > img {
  display: block;
  height: auto;
  max-width: 100%;
}

a.thumbnail-box:hover,
a.thumbnail-box:focus {
  border-color:#5da7e0;
  background:rgba(0,0,0,0.04);
}

.thumbnail-box > img {
  margin-right: auto;
  margin-left: auto;
}

.thumbnail-box > .caption {
  padding: 9px;
  color: #333333;
}

div > .caption {
  padding: 9px;
  color: #333333;
}

/*  END OF THUMBNAIL-BOX  */

/*  PANEL 패널  */

.panel {
  margin-bottom:10px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-body:before,
.panel-body:after {
  display: table;
  content: " ";
}

.panel-body:after {
  clear: both;
}

.panel-body:before,
.panel-body:after {
  display: table;
  content: " ";
}

.panel-body:after {
  clear: both;
}

.panel > .list-group {
  margin-bottom: 0;
}

.panel > .list-group .list-group-item {
  border-width: 1px 0;
}

.panel > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.panel > .list-group .list-group-item:last-child {
  border-bottom: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.panel > .table-simple {
  margin-bottom: 0;
}

.panel > .panel-body + .table-simple {
  border-top: 1px solid #dddddd;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size:20px;
}

.panel-title > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius:4px;
  border-bottom-left-radius:4px;
}

.panel-group .panel {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 4px;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse .panel-body {
  border-top: 1px solid #dddddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}

.panel > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #dddddd;
}

.panel > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #dddddd;
}

.panel > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #dddddd;
  border-top-color:#dddddd;
}

/*  END OF PANEL  */

/*  JUMBOTRON 점보트론  */

/* .jumbotron {
  
} */

.jumbotron > .jumbotron-container{
  padding:60px;
  font-size: 21px;
  font-weight: 200;
  line-height: 2.1428571435;
  color: inherit;
}

.jumbotron h1 {
  font-size:36px;
  line-height: 1;
  margin-bottom:10px;
}

.jumbotron p {
  line-height: 1.4;
  margin-bottom:10px;
  display:block;
}

.jumbotron p:after {
  content:"";
  clear:both;
  display:block;
}

@media all and (max-width:768px) {

  .frame-example-none:before{
    color:#666666;
  }

  .jumbotron {
    padding:40px 30px;
  }

  .jumbotron h1 {
    font-size:32px;
  }

  .jumbotron p {
  line-height: 1.4;
  margin-bottom:10px;
  font-size:18px;
}

  .jumbotron p:after {
  content:"";
  clear:both;
  display:block;
}
}

/*  END OF JUMBOTRON  */

/*  LIST-GROUP 리스트 그룹  */

.list-group {
  padding-left:0;
}

.list-group-item {
  line-height:1.2em;
  position: relative;
  display: block;
  padding: 12px 18px;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}

.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.list-group-item > .badge {
  float: right;
}

.list-group-item > .badge + .badge {
  margin-right: 5px;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #999999;
  border-radius: 10px;
}

.badge:empty {
  display: none;
}

a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.btn .badge {
  position: relative;
  top: -1px;
}

a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #428bca;
  background-color: #ffffff;
}

.nav-pills > li > a > .badge {
  margin-left: 3px;
}

a.list-group-item {
  color: #555555;
}

a.list-group-item .list-group-item-heading {
  color: #333333;
}

a.list-group-item:hover,
a.list-group-item:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  background-color: #f5f5f5;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.list-group a p{
  margin-top:0;
}

/*  END OF LIST-GROUP  */

/*  BREADCRUMB 경로  */

.breadcrumb {
  padding: 8px 15px;
  list-style: none;
  background:#f9f9f9;
  border:1px solid #dddddd;
  border-radius:4px;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  padding: 0 10px;
  color: #cccccc;
  content: "/\00a0";
}

.breadcrumb > .active {
  color: #999999;
}

/*  END OF BREADCRUMB  */

/* ========== 구분 없음 ========== */

article{
	line-height:1.5em;
	padding-bottom:5px;
}

/* ---------- 공통적용사항 common ---------- */

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

/* ---------- 레이아웃 layout ---------- */

/*  공통 (1024px 이상)  */

.col, 
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12, 
.col-m-1, .col-m-2, .col-m-3, .col-m-4, .col-m-5, .col-m-6, 
.col-m-7, .col-m-8, .col-m-9, .col-m-10, .col-m-11, .col-m-12, 
.col-t-1, .col-t-2, .col-t-3, .col-t-4, .col-t-5, .col-t-6, 
.col-t-7, .col-t-8, .col-t-9, .col-t-10, .col-t-11, .col-t-12, 
.col-p-1, .col-p-2, .col-p-3, .col-p-4, .col-p-5, .col-p-6, 
.col-p-7, .col-p-8, .col-p-9, .col-p-10, .col-p-11, .col-p-12, 
.col-gut-1, .col-gut-2, .col-gut-3, .col-gut-4, .col-gut-5, .col-gut-6, 
.col-gut-7, .col-gut-8, .col-gut-9, .col-gut-10, .col-gut-11, .col-gut-12,
.col-gut-m-1, .col-gut-m-2, .col-gut-m-3, .col-gut-m-4, .col-gut-m-5, .col-gut-m-6, 
.col-gut-m-7, .col-gut-m-8, .col-gut-m-9, .col-gut-m-10, .col-gut-m-11, .col-gut-m-12,
.col-gut-t-1, .col-gut-t-2, .col-gut-t-3, .col-gut-t-4, .col-gut-t-5, .col-gut-t-6, 
.col-gut-t-7, .col-gut-t-8, .col-gut-t-9, .col-gut-t-10, .col-gut-t-11, .col-gut-t-12,
.col-gut-p-1, .col-gut-p-2, .col-gut-p-3, .col-gut-p-4, .col-gut-p-5, .col-gut-p-6, 
.col-gut-p-7, .col-gut-p-8, .col-gut-p-9, .col-gut-p-10, .col-gut-p-11, .col-gut-p-12 {
	float: left;
}
.col-gut-1, .col-gut-2, .col-gut-3, .col-gut-4, .col-gut-5, .col-gut-6, 
.col-gut-7, .col-gut-8, .col-gut-9, .col-gut-10, .col-gut-11, .col-gut-12,
.col-gut-m-1, .col-gut-m-2, .col-gut-m-3, .col-gut-m-4, .col-gut-m-5, .col-gut-m-6, 
.col-gut-m-7, .col-gut-m-8, .col-gut-m-9, .col-gut-m-10, .col-gut-m-11, .col-gut-m-12,
.col-gut-t-1, .col-gut-t-2, .col-gut-t-3, .col-gut-t-4, .col-gut-t-5, .col-gut-t-6, 
.col-gut-t-7, .col-gut-t-8, .col-gut-t-9, .col-gut-t-10, .col-gut-t-11, .col-gut-t-12,
.col-gut-p-1, .col-gut-p-2, .col-gut-p-3, .col-gut-p-4, .col-gut-p-5, .col-gut-p-6, 
.col-gut-p-7, .col-gut-p-8, .col-gut-p-9, .col-gut-p-10, .col-gut-p-11, .col-gut-p-12 {
	margin-right:2%;
}
 .row{
    width:100%;
    height:auto;
    /*display:table;*/
    
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
.w-100 {
    width: 100%!important;
}
  .row:after{
    display:block;
    content:"";
    clear:both;
  }
  
  .col{
  	flex:1;
  }
  
  .col-12 {
    width: 100%;
    float:left;
  }

  /*
  .col-1 {
    width: 8.333333333333332%;
    float:left;
    }

  .col-2 {
    width: 16.666666666666664%;
    float:left;
    }

  .col-3 {
    width: 25%;
    float:left;
  }

  .col-4 {
    width: 33.33333333333333%;
    float:left;
  }

  .col-5 {
    width: 41.66666666666667%;
    float:left;
  }

  .col-6 {
    width: 50%;
    float:left;
  }

  .col-7 {
    width: 58.333333333333336%;
    float:left;
  }

  .col-8 {
    width: 66.66666666666666%;
    float:left;
  }

  .col-9 {
    width: 75%;
    float:left;
  }

  .col-10 {
    width: 83.33333333333334%;
    float:left;
  }

  .col-11 {
    width: 91.66666666666666%;
    float:left;
  }

  .col-12 {
    width: 100%;
    float:left;
  }



  .col-gut-1{
    width:6.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-1:last-child{
    margin-right:0;
  }

  .col-gut-2{
    width:15%;
    margin-right:2%;
    float:left;
  }

  .col-gut-3{
    width:23.5%;
    margin-right:2%;
    float:left;
  }

  .col-gut-4{
    width:32%;
    margin-right:2%;
    float:left;
  }

  .col-gut-5{
    width:40.5%;
    margin-right:2%;
    float:left;
  }

  .col-gut-6{
    width:49%;
    margin-right:2%;
    float:left;
  }

  .col-gut-7{
    width:57.5%;
    margin-right:2%;
    float:left;
  }

  .col-gut-8{
    width:66%;
    margin-right:2%;
    float:left;
  }

  .col-gut-9{
    width:74.5%;
    margin-right:2%;
    float:left;
  }

  .col-gut-10{
    width:83%;
    margin-right:2%;
    float:left;
  }

  .col-gut-11{
    width:91.5%;
    margin-right:2%;
    float:left;
  }

  .col-gut-12{
    width:100%;
    float:left;
  }

  .col-gut-2:nth-child(6n){
    margin-right:0;
  }

  .col-gut-3:nth-child(4n){
    margin-right:0;
  }

  .col-gut-4:nth-child(3n){
    margin-right:0;
  }

  .col-gut-6:nth-child(2n){
    margin-right:0;
  }*/
  @media (min-width:1025px){

  .col-1 {
    width: 8.333333333333332%;
    float:left;
    }

  .col-2 {
    width: 16.666666666666664%;
    float:left;
    }

  .col-3 {
    width: 25%;
    float:left;
  }

  .col-4 {
    width: 33.33333333333333%;
    float:left;
  }

  .col-5 {
    width: 41.66666666666667%;
    float:left;
  }

  .col-6 {
    width: 50%;
    float:left;
  }

  .col-7 {
    width: 58.333333333333336%;
    float:left;
  }

  .col-8 {
    width: 66.66666666666666%;
    float:left;
  }

  .col-9 {
    width: 75%;
    float:left;
  }

  .col-10 {
    width: 83.33333333333334%;
    float:left;
  }

  .col-11 {
    width: 91.66666666666666%;
    float:left;
  }

  .col-12 {
    width: 100%;
    float:left;
  }

  .col-gut-1{
    width:6.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-1:last-child{
    margin-right:0;
  }

  .col-gut-2{
    width:15%;
    margin-right:2%;
    float:left;
  }
  .col-gut-2:last-child{
    margin-right:0;
  }

  .col-gut-3{
    width:23.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-3:last-child{
    margin-right:0;
  }
  .col-gut-3:nth-child(4n){
    margin-right:0;
  }

  .col-gut-4{
    width:32%;
    margin-right:2%;
    float:left;
  }
  .col-gut-4:last-child{
    margin-right:0;
  }

  .col-gut-5{
    width:40.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-5:last-child{
    margin-right:0;
  }

  .col-gut-6{
    width:49%;
    margin-right:2%;
    float:left;
  }
  .col-gut-6:last-child{
    margin-right:0;
  }

  .col-gut-7{
    width:57.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-7:last-child{
    margin-right:0;
  }

  .col-gut-8{
    width:66%;
    margin-right:2%;
    float:left;
  }
  .col-gut-8:last-child{
    margin-right:0;
  }

  .col-gut-9{
    width:74.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-9:last-child{
    margin-right:0;
  }

  .col-gut-10{
    width:83%;
    margin-right:2%;
    float:left;
  }
  .col-gut-10:last-child{
    margin-right:0;
  } 

  .col-gut-11{
    width:91.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-11:last-child{
    margin-right:0;
  }
  .col-gut-12{
    width:100%;
    float:left;
  }
  .col-gut-4:nth-child(3n){
    margin-right:0;
  }
  .col-gut-2:nth-child(6n){
    margin-right:0;
  }
  .col-gut-3:nth-child(4n){
    margin-right:0;
  }
  .col-gut-4:nth-child(3n){
    margin-right:0;
  }
  .col-gut-6:nth-child(4n){
    margin-right:0;
  }

}

@media (min-width:769px) and (max-width:1024px) {

  .col-p-1 {
    width: 8.333333333333332%;
    float:left;
  }

  .col-p-2 {
    width: 16.666666666666664%;
    float:left;
    }

  .col-p-3 {
    width: 25%;
    float:left;
  }

  .col-p-4 {
    width: 33.33333333333333%;
    float:left;
  }

  .col-p-5 {
    width: 41.66666666666667%;
    float:left;
  }

  .col-p-6 {
    width: 50%;
    float:left;
  }

  .col-p-7 {
    width: 58.333333333333336%;
    float:left;
  }

  .col-p-8 {
    width: 66.66666666666666%;
    float:left;
  }

  .col-p-9 {
    width: 75%;
    float:left;
  }

  .col-p-10 {
    width: 83.33333333333334%;
    float:left;
  }

  .col-p-11 {
    width: 91.66666666666666%;
    float:left;
  }

  .col-p-12 {
    width: 100%;
    float:left;
  }

  .col-gut-p-1{
    width:6.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-p-1:last-child{
    margin-right:0;
  }

  .col-gut-p-2{
    width:15%;
    margin-right:2%;
    float:left;
  }
  .col-gut-p-2:last-child{
    margin-right:0;
  }
  .col-gut-p-2:nth-child(6n){
    margin-right:0;
  }

  .col-gut-p-3{
    width:23.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-p-3:last-child{
    margin-right:0;
  }
  .col-gut-p-3:nth-child(4n){
    margin-right:0;
  }

  .col-gut-p-4{
    width:32%;
    margin-right:2% !important;
    margin-bottom:2% ;
    float:left;
  }
  .col-gut-p-4:last-child{
    margin-right:0 !important;
  }
  .col-gut-p-4:nth-child(3n){
    margin-right:0 !important;
    margin-bottom:2% !important;
  }

  .col-gut-p-5{
    width:40.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-p-5:last-child{
    margin-right:0;
  }

  .col-gut-p-6{
    width:49%;
    margin-right:2%;
    float:left;
  }
  .col-gut-p-6:last-child{
    margin-right:0;
  }
  .col-gut-p-6:nth-child(2n){
    margin-right:0;
  }

  .col-gut-p-7{
    width:57.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-p-7:last-child{
    margin-right:0;
  }

  .col-gut-p-8{
    width:66%;
    margin-right:2%;
    float:left;
  }
  .col-gut-p-8:last-child{
    margin-right:0;
  }

  .col-gut-p-9{
    width:74.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-p-9:last-child{
    margin-right:0;
  }

  .col-gut-p-10{
    width:83%;
    margin-right:2%;
    float:left;
  }
  .col-gut-p-10:last-child{
    margin-right:0;
  } 

  .col-gut-p-11{
    width:91.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-p-11:last-child{
    margin-right:0;
  }

  .col-gut-p-12{
    width:100%;
    float:left;
  }/*

  .col-gut-3:nth-child(4n){
    margin-right:2%;
  }
  .col-gut-p-6.col-gut-3:nth-child(4n){
    margin-right:0;
  }
  
  .col-gut-4:nth-child(3n){
    margin-right:0;
  }

  .col-gut-6:nth-child(2n){
    margin-right:0;
  }
*/
}

@media (min-width:640px) and (max-width:768px) {

  .col-t-1 {
    width: 8.333333333333332%;
    float:left;
    }

  .col-t-2 {
    width: 16.666666666666664%;
    float:left;
    }

  .col-t-3 {
    width: 25%;
    float:left;
  }

  .col-t-4 {
    width: 33.33333333333333%;
    float:left;
  }

  .col-t-5 {
    width: 41.66666666666667%;
    float:left;
  }

  .col-t-6 {
    width: 50%;
    float:left;
  }

  .col-t-7 {
    width: 58.333333333333336%;
    float:left;
  }

  .col-t-8 {
    width: 66.66666666666666%;
    float:left;
  }

  .col-t-9 {
    width: 75%;
    float:left;
  }

  .col-t-10 {
    width: 83.33333333333334%;
    float:left;
  }

  .col-t-11 {
    width: 91.66666666666666%;
    float:left;
  }

  .col-t-12 {
    width: 100%;
    float:left;
  }

  .col-gut-t-1{
    width:6.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-t-1:last-child{
    margin-right:0;
  }

  .col-gut-t-2{
    width:15%;
    margin-right:2%;
    float:left;
  }
  .col-gut-t-2:last-child{
    margin-right:0;
  }  
  .col-gut-t-6:nth-child(2n){
    margin-right:0;
  }

  .col-gut-t-3{
    width:23.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-t-3:last-child{
    margin-right:0;
  }
  .col-gut-t-3:nth-child(4n){
    margin-right:0;
  }

  .col-gut-t-4{
    width:32%;
    margin-right:2%;
    float:left;
  }
  .col-gut-t-4:last-child{
    margin-right:0;
  }
  .col-gut-t-4:nth-child(3n){
    margin-right:0;
  }

  .col-gut-t-5{
    width:40.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-t-5:last-child{
    margin-right:0;
  }

  .col-gut-t-6{
    width:49%;
    margin-right:2%;
    float:left;
  }
  .col-gut-t-6:last-child{
    margin-right:0;
  }
  .col-gut-t-6:nth-child(2n){
    margin-right:0;
  }

  .col-gut-t-7{
    width:57.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-t-7:last-child{
    margin-right:0;
  }

  .col-gut-t-8{
    width:66%;
    margin-right:2%;
    float:left;
  }
  .col-gut-t-8:last-child{
    margin-right:0;
  }

  .col-gut-t-9{
    width:74.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-t-9:last-child{
    margin-right:0;
  }

  .col-gut-t-10{
    width:83%;
    margin-right:2%;
    float:left;
  }
  .col-gut-t-10:last-child{
    margin-right:0;
  } 

  .col-gut-t-11{
    width:91.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-t-11:last-child{
    margin-right:0;
  }

  .col-gut-t-12{
    width:100%;
    float:left;
  }
/*
  .col-gut-3:nth-child(4n){
    margin-right:0 !important;
  }

  .col-gut-4:nth-child(3n){
    margin-right:0;
  }

  .col-gut-4:nth-child(3n){
    margin-right:2%;
  }*/

}

@media (max-width:639px) {

  .col-m-1 {
    width: 8.333333333333332%;
    float:left;
    }

  .col-m-2 {
    width: 16.666666666666664%;
    float:left;
    }

  .col-m-3 {
    width: 25%;
    float:left;
  }

  .col-m-4 {
    width: 33.33333333333333%;
    float:left;
  }

  .col-m-5 {
    width: 41.66666666666667%;
    float:left;
  }

  .col-m-6 {
    width: 50%;
    float:left;
  }

  .col-m-7 {
    width: 58.333333333333336%;
    float:left;
  }

  .col-m-8 {
    width: 66.66666666666666%;
    float:left;
  }

  .col-m-9 {
    width: 75%;
    float:left;
  }

  .col-m-10 {
    width: 83.33333333333334%;
    float:left;
  }

  .col-m-11 {
    width: 91.66666666666666%;
    float:left;
  }

  .col-m-12 {
    width: 100%;
    float:left;
  }

  .col-gut-m-1{
    width:6.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-m-1:last-child{
    margin-right:0;
  }

  .col-gut-m-2{
    width:15%;
    margin-right:2%;
    float:left;
  }
  .col-gut-m-2:nth-child(6n){
    margin-right:0;
  }

  .col-gut-m-3{
    width:23.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-m-3:last-child{
    margin-right:0;
  }
  .col-gut-m-3:nth-child(4n){
    margin-right:0;
  }

  .col-gut-m-4{
    width:32%;
    margin-right:2%;
    float:left;
  }
  .col-gut-m-4:last-child{
    margin-right:0;
  }
  .col-gut-m-4:nth-child(3n){
    margin-right:0;
  }

  .col-gut-m-5{
    width:40.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-m-4:last-child{
    margin-right:0;
  }

  .col-gut-m-6{
    width:49%;
    margin-right:2%;
    float:left;
  }
  /*.col-gut-m-6:last-child{
    margin-right:0;
  }*/
  .col-gut-m-6:nth-child(even){
    margin-right:0;
  }

  .col-gut-m-7{
    width:57.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-m-7:last-child{
    margin-right:0;
  }

  .col-gut-m-8{
    width:66%;
    margin-right:2%;
    float:left;
  }
  .col-gut-m-8:last-child{
    margin-right:0;
  }

  .col-gut-m-9{
    width:74.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-m-9:last-child{
    margin-right:0;
  }

  .col-gut-m-10{
    width:83%;
    margin-right:2%;
    float:left;
  }
  .col-gut-m-10:last-child{
    margin-right:0;
  } 

  .col-gut-m-11{
    width:91.5%;
    margin-right:2%;
    float:left;
  }
  .col-gut-m-11:last-child{
    margin-right:0;
  }

  .col-gut-m-12{
    width:100%;
    margin-right:0;
    margin-left:0;
    float:left;
  }

}
/*
.fluid-background{
	border:1px solid blue;
}

.fluid-group{
	border:1px solid red;
}
*/
.fluid-section{
	/* display:inline-block;  */
	float:left;
	margin:0 1% 2%;
	padding:0;
	border:1px solid green;
}

.fluid-group:after{
	content:"";
	display:block;
	clear:both;
}

/*  텍스트 폰트 타이포 단락 text  */

strong{
	font-weight:600;
}

em{
	font-style:italic;
}

small{
	font-size:0.85em;
	color:#aaaaaa;
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border:0;
	border-top: 1px solid #eeeeee;
}

.link-style{
	color:#0066bc;
}

code{
	background:#f5f7fa;
	border:1px solid #e9ebf0;
	padding:0 3px;
	border-radius:4px;
	margin:0 0 5px 0;
	font-family:'Noto Sans KR', sans-serif;
	color:#414c5b;/*
	word-break:break-all;*/
	line-height:24px;
}

.highlight{
	background:#eaeaea;
	display:inline-block;
}

.underline{
	text-decoration:underline;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left:5px;
  vertical-align: middle;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-bottom: 0 dotted;
  border-left: 4px solid transparent;
  content: "";
  opacity:0.3;
}

blockquote {
	padding:0 20px;
	margin:20px 10px;
	clear:both;
}

blockquote p {
	font-size: 16px;
	line-height: 1.25em;
	color:#454545;
}

.blockquote-type1 p:before{
	content:"";
	font-size:20px;
	display:block;
	width:50px;
	height:4px;
	background:#dddddd;
	margin-bottom:15px;
}

cite{
	color:#aaaaaa;
	font-style:italic;
	font-size:12px;
}

cite:before{
	content:'ㅡ ';
	color:#aaaaaa;
	font-style:italic;
	font-size:12px;
}

.blockquote-type2{
	content:"";
	font-size:20px;
	border-left:4px solid #dddddd;
}

/*  리스트 목록 list  */

ol > li{
	list-style-position:inside;
}

ul > li{
	list-style-position:inside;
}

.ul-style-disc li{
	list-style-type:disc;
}

.ul-style-circle li{
	list-style-type:circle;
}

.ul-style-square li{
	list-style-type:square;
}

dl{
	margin-bottom:10px;
}

dt{
	font-weight:600;
}

dd{
	padding:0;
	margin:0;
	color:#555555;
}

.dl-horizontal dt {
	float:left;
	width:100px;
	overflow:hidden;
	clear:left;
	text-align:right;
	text-overflow:ellipsis;
	white-space:nowrap;
}

.dl-horizontal dt small {
	display:none;
}

.dl-horizontal dd {
	margin-left:120px;
}

@media all and (max-width:639px) {

  .dl-horizontal dt {
  width:100%;
  text-align:left;
  display:block;
  clear:both;
  }

  .dl-horizontal dt small {
    display:inline-block;
  }

  .dl-horizontal dd {
    margin:5px;
  }
}

@media all and (min-width:640px) and (max-width:768px) {

  .dl-horizontal dt {
    width:100%;
    text-align:left;
    display:block;
    clear:both;
  }

  .dl-horizontal dt small {
    display:inline-block;
  }

  .dl-horizontal dd {
    margin-left:3px;
    margin-top:5px;
  }
}

abbr[title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
  font-size: 90%;
  text-transform: uppercase;
}

/*  테이블 table   */

.table {
	width:100%;
	height:auto;
	border:1px solid #dddddd;
	background:transparent;
	margin:0;
}

.table th{
	border:1px solid #dddddd;
	border-bottom:2px solid #dddddd;
	padding:8px;
	text-align:left;
	font-weight:600;
	background:transparent;
}

.table td{
	border:1px solid #dddddd;
	padding:8px;
	text-align:left;
	background:transparent;
}

.table-background{
	background:#f7f7f7;
}

.table-green {
	background:#e9faee;
}

.table-yellow {
	background:#fffcec;
}

.table-red {
	background:#fdedee;
}

.table-blue {
  background:#ebf7fb;
}

.table-striped > tbody tr:nth-child(odd){
	background:#f7f7f7;
}

.table-simple{
	width:100%;
	height:auto;
	background:transparent;
}

.table-simple th{
	border-bottom:2px solid #dddddd;
	padding:8px;
	text-align:left;
	font-weight:600;
	background:transparent;
}

.table-simple td{
	border-bottom:1px solid #dddddd;
	padding:8px;
	text-align:left;
	background:transparent;
}

.table-simple tbody tr:last-child td{
  border-bottom:1px solid transparent;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
	background-color: #f5f5f5;
}

@media all and (max-width:639px) {
  .table-x-scroll {
    width:100%;
    margin-bottom:15px;
    overflow-x:scroll;
    overflow-y:hidden;
    white-space:nowrap;
  }

  .table-x-scroll > .table {
    margin-bottom: 0;
    background-color: #fff;
  }

}

@media all and (min-width:640px) and (max-width:768px) {

}

@media all and (min-width:769px) and (max-width:1024px) {

}

/*  이미지 image  */

.img-responsive {
	max-width:100%;
	display: block;
	height: auto;
	margin:0 auto;
}

.img-round {
	border-radius:6px;
}

.img-thumbnail {
	display: inline-block;
	height: auto;
	padding: 3px;
	line-height: 1.428571429;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius:4px;
}

.img-circle {
	border-radius: 50%;
}

.img-shadow {
	box-shadow:0 1px 4px rgba(0,0,0,0.4)
}

.img-back-center{
	width:100%;
	height:auto;
	background-position:center top;
}

/*  폼 form  */

form{
	width:100%;
	height:auto;
	display:block;
}

.form-frame:focus,
.form-textframe:focus,
.inline-form-frame:focus {
	border:1px solid #5da7e0;
	outline:0;
}

.form-group {
	/*width:100%;*/
	margin:0;
	display:block;
}

.form-frame {
	width:100%;
	height:30px;
	border:1px solid #cccccc;
	padding:5px;
	font-size: 14px;
	vertical-align:middle;
	border-radius: 4px;
}

.form-frame[readonly] {
	width:100%;
	height:30px;
	border:1px solid #cccccc;
	padding:5px;
	line-height:14px;
	font-size: 14px;
	vertical-align:middle;
	border-radius:4px;
  color:#aaaaaa;
}

.form-textframe {
	width:100%;
	border:1px solid #cccccc;
	padding:5px 10px;
	font-size:14px;
	line-height:1.3em;
	border-radius:4px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.form-fileframe {
	width:100%;
	padding:0;
	margin:0;
}

.form-checkbox{
	width:100%;
	display: block;
	min-height:20px;
	margin-bottom:5px;
	/* vertical-align:middle; */
}

.form-checkbox label:hover{
	cursor:pointer;
}

.disabled-radio{
	color:#aaaaaa;
	cursor:not-allowed;
}

.disabled-check{
	color:#aaaaaa;
	cursor:not-allowed;
}

.disabled-check:hover,
.disabled-check label:hover{
	color:#aaaaaa;
	cursor:not-allowed;
}

.disabled-radio{
	color:#aaaaaa;
	cursor:not-allowed;
}

.help-block{
	color:#999999;
	display:table;
	margin-top: 5px;
	margin-bottom: 10px;
	font-size:12px;
	clear:both;
}

.form-radio{
	width:100%;
	display: block;
	min-height:20px;
	margin-bottom:5px;
	/* vertical-align:middle; */
}

.form-radio label:hover{
	cursor:pointer;
}

.form-frame[disabled]{
	cursor:not-allowed;
	color:#999999;
	background:#eeeeee;
}

.form-radio-btn,
.form-check-btn{
	margin-right:10px;
	background:#efefef;
	color:#333333;
	border-radius:4px;
	border:1px solid rgba(0,0,0,0.15);
	overflow:hidden;
  display:inline-block;
	white-space:nowrap;
	cursor:pointer;
}

.form-radio-btn label,
.form-check-btn label {
	display:inline-block;
	margin:-1px;
}

.form-radio-btn label span,
.form-check-btn label span{
	text-align:center;
	padding:3px 8px;
	display:block;
}

.form-radio-btn label input,
.form-check-btn label input{
	position:absolute;
	display:none;
}

.form-radio-btn input:checked + span,
.form-check-btn input:checked + span{
	background:rgba(0,0,0,0.2);
	color:#333333;
	box-shadow:inset 0 1px 3px rgba(0,0,0,0.5);
}

.form-radio-btn:hover,
.form-check-btn:hover,
.form-radio-btn label:hover,
.form-check-btn label:hover{
	background:rgba(0,0,0,0.15);
	color:#000000;
	cursor:pointer;
}

.disabled-form-btn{
	color:#c2c2c2;
	background:#fbfbfb;
	border:1px solid #cccccc;
}

.disabled-form-btn:hover,
.disabled-form-btn label:hover{
	cursor:not-allowed;
	color:#c2c2c2;
	background:#fbfbfb;
}

.inline-form-group{
	display:inline-block;
	margin:0 0 10px 0;
}

.inline-form-frame{
	height:30px;
	border:1px solid #cccccc;
	padding:5px;
	font-size: 14px;
	vertical-align:middle;
	border-radius: 4px;
	display:inline-block;
}

.inline-form-radio{
	min-height:20px;
	margin-bottom:5px;
	margin-right:15px;
	vertical-align:middle;
	display:inline-block;
}

.inline-form-radio label:hover{
	cursor:pointer;
}

.inline-form-checkbox{
	display:inline-block;
	min-height:20px;
	margin-bottom:5px;
	margin-right:15px;
	vertical-align:middle;
}

.inline-form-checkbox label:hover{
	cursor:pointer;
}

@media all and (max-width:639px) {

  .inline-form-group{
    width:100%;
    margin:0;
    display:block;
  }

  .inline-form-frame{
    width:100%;
    display:block;
  }

  .inline-form-radio{
    width:100%;
    display: block;
  }

  .inline-form-checkbox{
    width:100%;
    display:block;
  }

  .inline-form-label{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    border:0;
  }
}

@media all and (min-width:640px) and (max-width:768px) {
  
  .inline-form-group{
    width:100%;
    margin:0;
    display:block;
  }

  .inline-form-frame{
    width:100%;
    display:block;
  }

  .inline-form-radio{
    width:100%;
    display: block;
  }

  .inline-form-checkbox{
    width:100%;
    display:block;
  }

  .inline-form-label{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    border:0;
  }

}

/*  버튼 button  */

.btn-group{
	display:block;
	width:100%;
	padding:0;
	margin:0;
}

.btn-group:after{
	content:"";
	display:block;
	clear:both;
}

.btn{
	display:inline-block;
	padding:10px 14px;
	font-size:14px;
	line-height:1em;
	font-weight:normal;
	text-align:center;
	white-space:nowrap;
	vertical-align:middle;
	cursor:pointer;
	border-radius:4px;
}

.btn:before,
.btn:after{
  display:block;
  content:"";
  clear:both;
}

.btn:hover{
	background:rgba(0,0,0,0.15);
}

.btn-default{
	background:#eaeaea;
	color:#454545;
}

.btn-default:active{
	box-shadow:inset 0 2px 3px rgba(0,0,0,0.4);
}

.btn-red{
	background:#e66066;
	color:#ffffff;
}

.btn-red:hover{
	background:#c64b51;
}

.btn-red:active{
	box-shadow:inset 0 2px 3px rgba(61,20,21,0.5);
}

.btn-blue{
	background:#60c2e6;
	color:#ffffff;
}

.btn-blue:hover{
	background:#3ea4c9;
}

.btn-blue:active{
	box-shadow:inset 0 2px 3px rgba(11,37,47,0.5);
}

.btn-green{
	background:#2ebf6c;
	color:#ffffff;
}

.btn-green:hover{
	background:#209e56;
}

.btn-green:active{
	box-shadow:inset 0 2px 3px rgba(18,58,30,0.5);
}

.btn-yellow{
	background:#ffe86b;
}

.btn-yellow:hover{
	background:#f6cc4a;
}

.btn-yellow:active{
	box-shadow:inset 0 2px 3px rgba(60,54,19,0.5);
}

.btn-lg{
	display:inline-block;
	padding:14px 30px;
	font-size:18px;
	line-height:14px;
	font-weight:normal;
	text-align:center;
	white-space:nowrap;
	vertical-align:middle;
	cursor:pointer;
	border-radius:4px;
	/*float:left;*/
}

.btn-sm{
	display:inline-block;
	padding:6px 10px;
	font-size:12px;
	line-height:14px;
	font-weight:normal;
	text-align:center;
	white-space:nowrap;
	vertical-align:middle;
	cursor:pointer;
	border-radius:4px;
	/*float:left;*/
}

.btn-xs{
	display:inline-block;
	padding:4px 6px;
	font-size:12px;
	line-height:14px;
	font-weight:normal;
	text-align:center;
	white-space:nowrap;
	vertical-align:middle;
	cursor:pointer;
	border-radius:4px;
	/*float:left;*/
}

.btn-full{
	width:100%;
	display:inline-block;
	font-size:14px;
	line-height:14px;
	font-weight:normal;
	text-align:center;
	white-space:nowrap;
	vertical-align:middle;
	cursor:pointer;
	border-radius:4px;
	/*float:left;*/
}

.btn-default[disabled],
.btn-default[disabled]:hover,
.btn-default[disabled]:active{
	background:#f4f4f4;
	color:#999999;
	cursor:not-allowed;
	box-shadow:none;
}

.btn-red[disabled],
.btn-red[disabled]:hover,
.btn-red[disabled]:active{
	background:#f9b8bb;
	color:#ffffff;
	cursor:not-allowed;
	box-shadow:none;
}

.btn-blue[disabled],
.btn-blue[disabled]:hover,
.btn-blue[disabled]:active{
	background:#afe0f2;
	color:#ffffff;
	cursor:not-allowed;
	box-shadow:none;
}

.btn-green[disabled],
.btn-green[disabled]:hover,
.btn-green[disabled]:active{
	background:#96dfb5;
	color:#ffffff;
	cursor:not-allowed;
	box-shadow:none;
}

.btn-yellow[disabled],
.btn-yellow[disabled]:hover,
.btn-yellow[disabled]:active{
	background:#fff3b5;
	color:#999999;
	cursor:not-allowed;
	box-shadow:none;
}

/*  이어진버튼  */

.btn-group-default > .btn{
	padding:10px 14px;
	font-size:14px;
	line-height:1.33em;
	border-radius: 6px;
	margin:0;
	float:left;
	border-right:1px solid rgba(0,0,0,0.1);
}

.btn-group-default > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
	border-radius: 0;
}

.btn-group-default > .btn:first-child {
	margin-left: 0;
	padding: 10px 14px;
	font-size: 14px;
	line-height: 1.33;
	border-radius:4px 0 0 4px;
}

.btn-group-default > .btn:last-child {
	margin-left: 0;
	padding: 10px 14px;
	font-size: 14px;
	line-height: 1.33;
	border-radius:0 4px 4px 0;
	border-right:none;
}

.btn-group-lg > .btn{
	padding: 14px 20px;
	font-size: 14px;
	line-height: 1.33;
	border-radius: 6px;
	margin:0;
	float:left;
	border-right:1px solid rgba(0,0,0,0.1);
}

.btn-group-lg > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
	border-radius: 0;
}

.btn-group-lg > .btn:first-child {
	margin-left: 0;
	padding: 14px 20px;
	font-size: 14px;
	line-height: 1.33;
	border-radius:4px 0 0 4px;
}

.btn-group-lg > .btn:last-child {
	margin-left: 0;
	padding:14px 20px;
	font-size: 14px;
	line-height: 1.33;
	border-radius:0 4px 4px 0;
	border-right:none;
}

.btn-group-sm > .btn{
	padding:6px 10px;
	font-size:14px;
	line-height:14px;
	border-radius:6px;
	margin:0;
	float:left;
	border-right:1px solid rgba(0,0,0,0.1);
}

.btn-group-sm > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
	border-radius: 0;
}

.btn-group-sm > .btn:first-child {
	margin-left: 0;
	padding:6px 10px;
	font-size:14px;
	line-height:14px;
	border-radius:4px 0 0 4px;
}

.btn-group-sm > .btn:last-child {
	margin-left: 0;
	padding:6px 10px;
	font-size:14px;
	line-height:14px;
	border-radius:0 4px 4px 0;
	border-right:none;
}

.btn-group-xs > .btn{
	padding:4px 4px;
	font-size:14px;
	line-height:14px;
	border-radius:6px;
	margin:0;
	float:left;
	border-right:1px solid rgba(0,0,0,0.1);
}

.btn-group-xs > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
	border-radius: 0;
}

.btn-group-xs > .btn:first-child {
	margin-left: 0;
	padding:4px 4px;
	font-size:14px;
	line-height:14px;
	border-radius:4px 0 0 4px;
}

.btn-group-xs > .btn:last-child {
	margin-left: 0;
	padding:4px 4px;
	font-size:14px;
	line-height:14px;
	border-radius:0 4px 4px 0;
	border-right:none;
}

.btn-group-default:after{
	content:"";
	display:block;
	clear:both;
}

.btn-group-lg:after{
	content:"";
	display:block;
	clear:both;
}

.btn-group-sm:after{
	content:"";
	display:block;
	clear:both;
}

.btn-group-xs:after{
	content:"";
	display:block;
	clear:both;
}

/*  기타 etc.  */

.close-btn:after{
  display:block;
  content:"";
  clear:both;
}

.close-btn {
	float: right;
	color: #666666;
	text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

.close-btn:hover,
.close-btn:focus {
	color: #000000;
	text-decoration: none;
	cursor: pointer;
}

button.close-btn {
	padding: 0;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
}

.justified-left{
	float:left !important;
}

.justified-right{
	float:right !important;
}

.disabled{
	color: #999999;
	cursor: not-allowed;
	background-color: #ffffff;
	border-color: #dddddd;
}

/*  top앵커 맨 위로  */

.a-top-1{
	width:45px;
	height:45px;
	position:fixed; right:15px; bottom:15px; z-index:1001;
	background:rgba(65,76,91,0.2);
	border-radius:50%;
	line-height:20px;
	text-align:center;
	font-size:14px;
	color:#ffffff;
	vertical-align: baseline;
	border:1px solid rgba(65,76,91,0.15);
}

.a-top-2{
	width:36px;
	height:34px;
	position:fixed; right:20px; bottom:20px; z-index:1001;
	background:rgba(0,0,0,0.2);
	border-radius:1px;
	line-height:28px;
	text-align:center;
	font-size:14px;
	color:rgba(0,0,0,0.2);
	vertical-align: baseline;
	border:1px solid rgba(0,0,0,0.1);
}

.a-top-3{
	width:36px;
	height:34px;
	position:fixed;
	left:48%;
	bottom:0;
	z-index:1001;
	background:rgba(0,0,0,0.2);
	border-radius:1px;
	line-height:28px;
	text-align:center;
	font-size:14px;
	color:rgba(0,0,0,0.2);
	vertical-align: baseline;
	border:1px solid rgba(0,0,0,0.1);
}

.a-top-4{
	width:36px;
	height:34px;
	position:fixed;
	right:0;
	bottom:10px;
	z-index:1001;
	background:rgba(0,0,0,0.2);
	border-radius:1px;
	line-height:28px;
	text-align:center;
	font-size:14px;
	color:rgba(0,0,0,0.2);
	vertical-align: baseline;
	border:1px solid rgba(0,0,0,0.1);
	border-right:none;
}

.hidden-mobile{
  display:block !important;
}

.hidden-tablet{
  display:block !important;
}

.hidden-pc{
  display:none !important;
}

@media all and (max-width:639px) {

  .hidden-mobile{
    display:none !important;
  }
  .hidden-tablet{
    display:block !important;
  }
  .hidden-pc{
    display:block !important;
  }
}

@media all and (min-width:640px) and (max-width:1024px) {

  .hidden-mobile{
    display:block !important;
  }
  .hidden-tablet{
    display:none !important;
  }
  .hidden-pc{
    display:block !important;
  }
}