@charset "utf-8";
@import url("basic.css");
@import url("font-awesome.css");
@import url('//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 100;
  src: url(webfont/NotoSansKR-Thin.woff2) format('woff2'),
       url(webfont/NotoSansKR-Thin.woff) format('woff'),
       url(webfont/NotoSansKR-Thin.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 300;
  src: url(webfont/NotoSansKR-Light.woff2) format('woff2'),
       url(webfont/NotoSansKR-Light.woff) format('woff'),
       url(webfont/NotoSansKR-Light.otf) format('opentype');
}
@font-face {
   font-family: 'Noto Sans KR';
   font-style: normal;
   font-weight: 400;
   src: url(webfont/NotoSansKR-Regular.woff2) format('woff2'),
        url(webfont/NotoSansKR-Regular.woff) format('woff'),
        url(webfont/NotoSansKR-Regular.otf) format('opentype');
 }
@font-face {
   font-family: 'Noto Sans KR';
   font-style: normal;
   font-weight: 500;
   src: url(webfont/NotoSansKR-Medium.woff2) format('woff2'),
        url(webfont/NotoSansKR-Medium.woff) format('woff'),
        url(webfont/NotoSansKR-Medium.otf) format('opentype');
 }
@font-face {
   font-family: 'Noto Sans KR';
   font-style: normal;
   font-weight: 700;
   src: url(webfont/NotoSansKR-Bold.woff2) format('woff2'),
        url(webfont/NotoSansKR-Bold.woff) format('woff'),
        url(webfont/NotoSansKR-Bold.otf) format('opentype');
 }
@font-face {
   font-family: 'Noto Sans KR';
   font-style: normal;
   font-weight: 900;
   src: url(webfont/NotoSansKR-Black.woff2) format('woff2'),
        url(webfont/NotoSansKR-Black.woff) format('woff'),
        url(webfont/NotoSansKR-Black.otf) format('opentype');
 }


/* common css */
/* 작성일 : 2017-02 */
html, body {	
	margin: 0;
	padding: 0;
	border: none;	
	font-family:'Open Sans',Noto Sans KR, 'Malgun Gothic',sans-serif;	
	color:#777;
	font-style: normal;		
    line-height: 1.42857143;
	background: transparent;
	-webkit-text-size-adjust:none;	
    -webkit-font-smoothing: antialiased;   
}

a.accessibility01 {
	position:absolute; 
	display:block; 
	width:20%; 
	left:0; 
	text-align:center; 
	top:-10000px; 
	z-index:9999999; 
	font-size:13px;
}
a.accessibility01:hover, a.accessibility01:focus, a.accessibility01:active {
	position: absolute; 
	top: 0; 
	padding: 10px 0; 
	font-weight:bold; 
	color:#fff; 
	background:#eda100; 
	z-index:9999999;
}
h1, h2, h3, h4, strong, th {
    font-weight: normal;
    font-family: inherit;    
    line-height: 1.1;
    color: inherit;
}

/* Button Style */
.buttonGroup { clear: both; padding: 60px 0;}
/*.btn { 
    cursor: pointer; 
    background: transparent; 
    border: 0; 
    white-space: nowrap; 
    vertical-align: middle; 
    touch-action: manipulation; 
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    line-height: 1.42857143;
    font-size: 14px;
    padding: 6px 12px;
    display: inline-block;
}*/
.btn-red {}
.btn-gray { background: #5d6169; color: #fff;}
.btn-green { background: #81c341; color: #fff;}
.btn-black {background: #000; color: #fff;}
.btn-white {background: #fff; color: #5d6169; border: 1px solid #cccccc; }

.btn-lg {font-size : 20px; font-size:2.0rem; line-height: 1.3333333; padding: 12px 16px; font-family: NanumSquare; }
.btn-nm {font-size : 14px; font-size:1.4rem; line-height: 1.42857143; padding: 8px 12px; font-family: NanumBarunGothic; }
.btn-sm {font-size : 12px; font-size:1.2rem; line-height: 1.5; padding: 6px 10px; font-family: NanumBarunGothic;}
.btn-xm {font-size : 12px; font-size:1.2rem; line-height: 1.5; padding: 2px 5px; font-family: NanumBarunGothic;}

/* Text Size option */
.txt-lg {font-size: 18px; font-size:1.8rem;}
.txt-nm {font-size: 14px; font-size:1.4rem;}
.txt-sm {font-size: 12px; font-size:1.2rem;}
.txt-xm {font-size: 12px; font-size:1.2rem;}

/* Image Style */
.img-rounded {border-radius: 6px;}
.img-circle {border-radius: 50%;}
.img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
     -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

/* Float Style */
.f-right { float:right;}
.f-left { float:right;}
.clearfix { clear:both !important; }

/* Text Style option */
.cnt { text-align:center !important;}
.t-right {text-align:right !important;}
.t-left {text-align:left !important;}

/* hidden */
.hidden { visibility:hidden; position:absolute; font-size:0; width:0; height:0; line-height:0; margin:0; padding:0; background:none}
.t-hidden { text-indent:-9999em;}

/* Grid System */
.col-2 {width: 50%;}
.col-3 {width: 33.33333333%;}
.col-60 {width: 60%;}
.col-40 {width: 40%;}
.col-4 {width: 25%;}
.col-5 {width: 20%;}
    
/* Margin */
.mt0 { margin-top:0 !important; }
.mt5 { margin-top:5px; margin-top:0.5rem; }
.mt10 { margin-top:10px; margin-top:1rem; }
.mt14 { margin-top:14px; margin-top:1.4rem; }
.mt15 { margin-top:15px; margin-top:1.5rem; }
.mt20 { margin-top:20px; margin-top:2rem; }
.mt25 { margin-top:25px; margin-top:2.5rem; }
.mt40 { margin-top:40px !important; margin-top:4rem; }
.mt50 { margin-top:50px; margin-top:5rem; }

.mb0 { margin-bottom:0 !important; }
.mb5 { margin-bottom:5px; margin-bottom:.5rem !important; }
.mb10 { margin-bottom:10px; margin-bottom:1rem; }
.mb15 { margin-bottom:15px; margin-bottom:1.5rem; }
.mb20 { margin-bottom:20px; margin-bottom:2rem; }
.mb25 { margin-bottom:25px; margin-bottom:2.5rem; }
.mb30 { margin-bottom:30px !important; margin-bottom:3rem !important; }
.mb35 { margin-bottom:35px; margin-bottom:3.5rem; }
.mb40 { margin-bottom:40px; margin-bottom:4.0rem; }
.mb45 { margin-bottom:45px; margin-bottom:4.5rem; }
.mb50 { margin-bottom:50px !important; margin-bottom:5.0rem !important; }
.mb55 { margin-bottom:55px; margin-bottom:5.5rem; }
.mb60 { margin-bottom:60px; margin-bottom:6rem; }
.mb65 { margin-bottom:65px; margin-bottom:6.5rem; }
.mb70 { margin-bottom:70px !important; margin-bottom:7rem !important; }
.mb90 { margin-bottom:90px; margin-bottom:9rem; }
.mb140 { margin-bottom:140px; margin-bottom:14rem; }

.ml0 { margin-left:0; }
.ml10 { margin-left:10px; }
.ml15 { margin-left:15px; margin-left:1.5rem; }
.ml20 { margin-left:20px; margin-left:2rem; }
.ml30 { margin-left:30px; margin-left:3rem; }
.mr0 { margin-right:0; }
.mr15 { margin-right:15px; margin-right:1.5rem; }
.mw15 { margin-left:15px; margin-right:15px; margin-right:1.5rem; margin-left:1.5rem; }
.mw50 { margin-left:50px; margin-right:50px; margin-right:5rem; margin-left:5rem; }
.mw15h20 { margin:20px 15px; margin:2rem 1.5rem; }
.mw20 { margin-right:20px; margin-left:20px; }

/* Padding */
.pd0 { padding: 0 !important;}
.pt0 { padding-top:0; }
.pt20 { padding-top:20px; }
.pb0 { padding-bottom:0; }
.pb20 { padding-bottom:20px; }
.pb30 { padding-bottom:30px; }
.pl0 { padding-left:0; }
.pl20 { padding-left:20px; }
.p20 { padding-left:20px; }
.pr0 { padding-right:0; }
.pl20 { padding-left:20px; }
.pl30 { padding-left:30px; }
.pr16 { padding-right:16px; }
.pr20 { padding-right:20px; }
.pr30 { padding-right:30px; }
.pl40 { padding-left:40px; }
.pt40 { padding-top:40px; }
.ph10 { padding-top:10px; padding-bottom:10px; }
.ph30 { padding-top:30px; padding-bottom:30px; }
.pw30 { padding-left:30px; padding-right:30px; }
.pw20 { padding-left:20px; padding-right:20px; }

/* Slider */
.slick-slider { position: relative; display: block; box-sizing: border-box; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; -khtml-user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; }
.slick-list { position: relative; display: block; overflow: hidden; margin: 0; padding: 0;}
.slick-list:focus { outline: none; }
.slick-list.dragging { cursor: pointer; cursor: hand; }
.slick-slider .slick-track, .slick-slider .slick-list { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
.slick-track { position: relative; top: 0; left: 0; display: block; }
.slick-track:before, .slick-track:after { display: table; content: ''; }
.slick-track:after { clear: both; }
.slick-loading .slick-track { visibility: hidden; }
.slick-slide { display: none; float: left; height: 100%; min-height: 1px; }
[dir='rtl'] .slick-slide { float: right; }
.slick-slide img { /* display: block;*/
}
.slick-slide.slick-loading img { display: none; }
.slick-slide.dragging img { pointer-events: none; }
.slick-initialized .slick-slide { display: block; }
.slick-loading .slick-slide { visibility: hidden; }
.slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; }
.slick-arrow.slick-hidden { display: none; }

/*
Radio&Checkbox 변환 클래스
*******************************************************************/
input[type=checkbox].checkbox,
input[type=radio].radio {
	opacity:0;
	position:absolute;
	z-index:12;
	width:32px;
	height:32px;
	cursor:pointer;
}
input[type=checkbox].checkbox:checked,
input[type=checkbox].checkbox:focus,
input[type=radio].radio:checked,
input[type=radio].radio:focus {
	outline:none !important;
}
input[type=checkbox].checkbox+.label,
input[type=radio].radio+.label {
	position:relative;
	z-index:11;
	display:inline-block;
	margin:0 2px 0 0;
	line-height:20px;
	min-height:30px;
	min-width:30px;
	font-weight:normal;
}
input[type=checkbox].checkbox+.label::before,
input[type=radio].radio+.label::before {
	font-family:fontAwesome;
	font-weight:normal;
	font-size:17px;
	color:#9a9a9a;	
	background-color:#fff;
	border:1px solid #dfdfdf;	
	border-radius:0;
	display:inline-block;
	text-align:center;
	vertical-align:middle;
	height:25px;
	line-height:18px;
	min-width:30px;
	margin-right:1px;
	content: '';
	/*content: "\f00c";*/
	padding-top: 5px;
}
input[type=checkbox].checkbox:checked+.label:before,
input[type=radio].radio:checked+.label:before {
	display:inline-block;
	content:"\f00c";
	background-color:#0080b8;
	border-color:#0080b8;
	color: #fff;	
}
input[type=checkbox].checkbox:hover+.label::before,
input[type=checkbox].checkbox+.label:hover::before,
input[type=radio].radio:hover+.label::before,
input[type=radio].radio+.label:hover::before {
	border-color:#0080b8;
}
input[type=checkbox].checkbox:active+.label::before,
input[type=checkbox].checkbox:checked:active+.label::before,
input[type=radio].radio:active+.label::before,
input[type=radio].radio:checked:active+.label::before {
	box-shadow:0 1px 2px rgba(0,0,0,0.05), inset 0 1px 3px rgba(0,0,0,0.1);
}
input[type=checkbox].checkbox:disabled+.label::before,
input[type=checkbox].checkbox[disabled]+.label::before,
input[type=checkbox].checkbox.disabled+.label::before,
input[type=radio].radio:disabled+.label::before,
input[type=radio].radio[disabled]+.label::before,
input[type=radio].radio.disabled+.label::before{
	background-color:#f0f0f0 !important;
	border-color:#c9c9c9 !important;
	box-shadow:none !important;
	color:#bbb;
}

input[type=radio].radio+.label::before {
	border-radius:100%;
	font-size:12px;
	line-height:17px;
	height:17px;
	min-width:17px;
}

input[type=checkbox].checkbox.switch {
	width:60px;
	height:30px;
}
input[type=checkbox].checkbox.switch+.label {
	margin:0 4px;
	min-height:30px;
}
input[type=checkbox].checkbox.switch+.label::before {
	content:"ON\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0OFF";
	float:left;
	overflow:hidden;
	box-sizing:border-box;
	margin-right:0px;
	padding:0px;
	width:60px;
	height:30px;
	line-height:28px;	
	background-color:#889fae;
	border:1px solid #6d899c;
	border-radius:2px;
	box-shadow:none;
	color:#fff;
	font-family:Arial, Helvertica, sans-serif;
	font-size:11px;
	font-weight:bold;
	text-align:left;
	text-indent:-30px;
	transition:all 0.4s ease;
}
input[type=checkbox].checkbox.switch+.label::after {
	content:"ːːː";
	position:absolute;
	top:0px;
	left:0px;
	box-sizing:border-box;	
	padding:4px 0px 0px;
	width:30px;
	height:30px;
	background: #f7f7f7; 
	background: linear-gradient(to bottom,  #f7f7f7 0%,#e5e5e5 100%); 
	border-top:1px solid #e4e4e4;
	border-right:none;
	border-bottom:1px solid #c3c3c3;
	border-left:1px solid #cecece;
	boder-top-right-radius:0px;
	border-bottom-right-radius:0px;
	border-top-left-radius:2px;
	border-bottom-left-radius:2px;	
	color:#5b6a73;
	font-family:Arial, Helvertica, sans-serif;
	font-size:12px;
	font-weight:lighter;
	line-height:18px;
	text-align:center;
	text-shadow:-1px 0 0 rgba(0,0,0,0.2);
	transition:all 0.4s ease;
}
input[type=checkbox].checkbox.switch:checked+.label::before {
	text-indent:5px;
	background-color:#5791d7;
	border-color:#4b79ad;
}
input[type=checkbox].checkbox.switch:checked+.label::after {
	left:32px;
	border-right:1px solid #cecece;
	border-left:none;
	boder-top-right-radius:2px;
	border-bottom-right-radius:2px;
	border-top-left-radius:0px;
	border-bottom-left-radius:0px;
}
input.checkbox.readonly[type="checkbox"] + .label:before,
input.radio.readonly[type="radio"] + .label:before {
	background:#e1e1e1;
}

input[type="text"], input[type="password"] {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: #fff;
    height: 30px;
    padding: 0 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    line-height: 30px\9;
    font-family: inherit;
    font-size: 14px;
    font-size: 1.4rem;
}

select {
    border: 1px solid #ccc;
    height: 30px;
    vertical-align: middle;
    font-family: inherit;
    padding: 0 10px;
    padding: 0\9;   
    font-size: 14px;
    font-size: 1.4rem;
}
.type-area {
     border: 1px solid #ccc;
     padding: 10px;  
     font-family: inherit;
     font-size: 14px;
     font-size: 1.4rem;
}

/* 
paging 
*******************************************************************/
.paging{ clear:both; text-align:center; margin-top:50px;}
.paging a {width:38px;height:38px; border:1px solid #ccc; background:#fff; color:#666; font-size:13px; line-height:38px; text-align:center; vertical-align:middle;}
.paging strong {width:38px; height:35px; background:#fff; border:1px solid #ccc; border-bottom:4px solid #052f6f; font-weight: normal; color:#3b3b3b; font-size:13px; line-height:38px; text-align:center;}
.paging a.prev {width:40px;height:40px;margin-right:25px;font-size:0;line-height:0;overflow:hidden;border:none !important; background:url("../img/icon.png") no-repeat -2px -160px; text-indent:-9999em;}
.paging a.next {width:40px;height:40px;margin-left:25px;font-size:0;line-height:0;overflow:hidden;border:none !important; background:url("../img/icon.png") -47px -160px no-repeat !important; text-indent:-9999em;}
.paging a, .paging strong{display:inline-block; margin-right:1px; vertical-align:middle;}

/* Select Style */


.formTable select 
{
    border: 1px solid #ddd;
    -webkit-appearance: none;  
    -moz-appearance: none;  
    background: url('../img/select_img.gif')  no-repeat right 0;
   /* background-position: 179px 7px;*/
    text-indent: 0.01px;
    text-overflow: "";
    color: #FCAF17;    
 }

select::-ms-expand {
    display: none;
}