html {
	/*position: relative;*/
	width: 100%;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: none;
	-webkit-appearance: none;
	background: #fff;
	/*font-size: 12px;*/
}

body {
	font-family: 'notokr', 'Dotum', '돋움', '맑은 고딕', 'Malgun Gothic', 'Apple Gothic', sans-serif, Tahoma, Verdana;
	color: #292929;
	font-size: 16px;
	font-weight: 300;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}

::selection {
	background: #b3d4fc;
	text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
	resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
	margin: 0.2em 0;
	background: #ccc;
	color: #000;
	padding: 0.2em 0;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden {
	display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
	visibility: hidden;
}


/** common class **/

input[type=text] {
	border: 1px solid #dcdcdc;
	border-radius: 4px;
	padding-left: 10px;
	padding-right: 10px;
	ime-mode: inactive;
}

input, button, select, textarea {
	vertical-align: middle;
	border: 0;
	font-family: 'notokr', 'Dotum', '돋움', '맑은 고딕', 'Malgun Gothic', 'Apple Gothic', sans-serif, Tahoma, Verdana;
}

html, body, div, span, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong,
sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, h1, h2, h3, h4, h5, h6,
header, footer, section, article, aside, nav, hgroup, details, figure, figcaption {
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

time {
	letter-spacing: 0;
}

* {
	-webkit-top-highlight-color: transparent;
}

table {
	width: 100%;
	border-spacing: 0;
	table-layout: fixed;
	border-collapse: collapse;
	empty-cells: show;
}

/* --------------------------------------------
 * link
/* ------------------------------------------ */
a {
	color: #292929;
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}

/* --------------------------------------------
 * form
/* ------------------------------------------ */
button,
input[type=button],
input[type=submit],
input[type=reset] {
	cursor: pointer;
	width: auto;
	overflow: visible;
	vertical-align: middle;
	background: none;
	margin: 0;
	padding: 0;
	outline: none;
}

input[type="text"],
input[type="password"],
input[type="file"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="date"],
input[type="datetime"] {
	border: 1px solid #dcdcdc;
	padding: 0 10px;
	width: 100%;
	font-size: 12px;
	border-radius: 0;
	/*background-color: #fff;*/
	background-color: #EDEDED;
	color: #292929;
	-webkit-appearance: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 28px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-moz-inner-spin-button,
input[type="number"]:-ms-inner-spin-button,
input[type="number"]:-o-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-moz-outer-spin-button,
input[type="number"]:-ms-outer-spin-button,
input[type="number"]:-o-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="file"] {
	cursor: pointer;
}

input::-webkit-input-placeholder {
	color: #a2a2a2 !important;
}

input::-moz-placeholder {
	color: #a2a2a2 !important;
}

input:-ms-input-placeholder {
	color: #a2a2a2 !important;
}

input:-o-input-placeholder {
	color: #a2a2a2 !important;
}

input::-ms-clear {
	display: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
	cursor: pointer;
}

select {
	border: 1px;
	height: 28px;
	width: 100%;
}

input, button, select, textarea {
	vertical-align: middle;
	border: 0;
	font-family: 'notokr', 'Dotum', '돋움', '맑은 고딕', 'Malgun Gothic', 'Apple Gothic', sans-serif, Tahoma, Verdana;
}

textarea {
	resize: none;
	width: 100%;
	font-family: 'notokr', 'Dotum', '돋움', '맑은 고딕', 'Malgun Gothic', 'Apple Gothic', sans-serif, Tahoma, Verdana;
	-webkit-appearance: none;
	box-sizing: border-box;
	color: #292929;
	background-color: #fff;
	padding: 15px 10px;
	border: 1px solid #d5dddf;
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus {
	border-color: #00a559;
}

textarea:disabled,
select:disabled,
input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="email"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
input[type="url"]:disabled,
input[type="tel"]:disabled,
input[type="date"]:disabled,
input[type="datetime"]:disabled {
	background-color: #f5f6fa;
	color: #292929;
	opacity: 1;
}

textarea.read-only,
select.read-only,
input[type="text"].read-only,
input[type="password"].read-only,
input[type="email"].read-only,
input[type="number"].read-only,
input[type="search"].read-only,
input[type="url"].read-only,
input[type="tel"].read-only,
input[type="date"].read-only,
input[type="datetime"].read-only {
	background-color: #f5f6fa;
	color: #292929;
	opacity: 1;
}

/* Firefox 18- */
/* focus [readonly] outline - 2017-11-22 김남우 */
input:focus, textarea:focus, select:focus {
	outline: none;
	border: 1px solid #2f8bff !important;
}

input[readonly]:focus, textarea[readonly]:focus, select[readonly]:focus {
	outline: none;
	border: 1px solid #2f8bff !important;
}

.ie9-placeholder {
	font-weight: 300;
	font-size: 1.1666rem;
	color: #c1c1c1 !important;
}

/* ie9 일경우 placeholder 를 직접 잡아줄것 */
.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}


input[type=text] {
	border: 1px solid #dcdcdc;
	border-radius: 4px;
	padding-left: 10px;
	padding-right: 10px;
}

input[type=password] {
	border: 1px solid #dcdcdc;
	border-radius: 4px;
	padding-left: 10px;
	padding-right: 10px;
}

input[type=number] {
	border: 1px solid #dcdcdc;
	border-radius: 4px;
	padding-left: 10px;
	padding-right: 10px;
}

textarea {
	border: 1px solid #dcdcdc;
	border-radius: 4px;
	padding-left: 10px;
	padding-right: 10px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* --------------------------------------------
 * Size
/* ------------------------------------------ */
.w100per {
	width: 100% !important;
}

.h100per {
	height: 100% !important;
}

.w20 {
	width: 20px !important;
}

.w29 {
	width: 29px !important;
}

.w30 {
	width: 30px !important;
}

.w35 {
	width: 35px !important;
}

.w45 {
	width: 45px !important;
}

.w50 {
	width: 50px !important;
}

.w60 {
	width: 60px !important;
}

.w70 {
	width: 70px !important;
}

.w72 {
	width: 72px !important;
}

.w75 {
	width: 75px !important;
}

.w80 {
	width: 80px !important;
}

.w85 {
	width: 85px !important;
}

.w93 {
	width: 93px !important;
}

.w100 {
	width: 100px !important;
}

.w110 {
	width: 110px !important;
}

.w117 {
	width: 117px !important;
}

.w120 {
	width: 120px !important;
}

.w125 {
	width: 125px !important;
}

.w130 {
	width: 135px !important;
}

.w135 {
	width: 135px !important;
}

.w138 {
	width: 138px !important;
}

.w140 {
	width: 140px !important;
}

.w141 {
	width: 141px !important;
}

.w145 {
	width: 145px !important;
}

.w150 {
	width: 150px !important;
}

.w160 {
	width: 160px !important;
}

.w170 {
	width: 170px !important;
}

.w176 {
	width: 176px !important;
}

.w180 {
	width: 180px !important;
}

.w187 {
	width: 187px !important;
}

.w200 {
	width: 200px !important;
}

.w204 {
	width: 204px !important;
}

.w210 {
	width: 210px !important;
}

.w230 {
	width: 230px !important;
}

.w240 {
	width: 240px !important;
}

.w250 {
	width: 250px !important;
}

.w280 {
	width: 280px !important;
}

.w297 {
	width: 297px !important;
}

.w330 {
	width: 330px !important;
}

.w350 {
	width: 350px !important;
}

.w360 {
	width: 360px !important;
}

.w380 {
	width: 380px !important;
}

.w690 {
	width: 690px !important;
}

.w700 {
	width: 700px !important;
}

.h25 {
	height: 25px !important;
}

.h28 {
	height: 28px !important;
}

.h30 {
	height: 30px !important;
}

/** border **/
.bsr1 {
	border: 1px solid #ff0000;
}

/** browser size **/
.wrap {
	width: 1024px;
	height: 728px;
}

/** margin **/
.no-margin {
	margin: 0 0 0 0;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt29 {
	margin-top: 29px;
}

/*.mt30 {*/
/*    margin-top:30px !important;*/
/*}*/

.mb1 {
	margin-bottom: 1px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb12 {
	margin-bottom: 12px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb25 {
	margin-bottom: 25px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb35 {
	margin-bottom:35px;
}

.ml0 {
	margin-left: 0px;
}

.mr6 {
	margin-right: 6px;
}

.mr10 {
	margin-right: 10px;
}

.mr12 {
	margin-right: 12px;
}

/** padding **/
.pt20 {
	padding-top: 20px !important;
}

.pl0 {
	padding-left: 0px;
}

/** float **/

.fl {
	float: left;
}

.fr {
	float: right;
}

/** right **/
.r50 {
	right: 50px;
}

.r55 {
	right: 55px;
}

.r58 {
	right: 58px;
}

/** position */
.posr {
	position: relative;
}

/** ul **/
ul {
	list-style: none;
}

/**
    https://offroadcode.com/rem-calculator
    font-size
**/

.fs12 {
	font-size: 0.75rem;
}

.fs13 {
	font-size: 0.8125rem;
}

.fs14 {
	font-size: 0.875rem;
}

.fs15 {
	font-size: 0.9375rem;
}

.fs16 {
	font-size: 1rem;
}

.fs18 {
	font-size: 1.125rem;
}

.fs24 {
	font-size: 1.5rem;
}

.fs26 {
	font-size: 1.625rem;
}

.fs30 {
	font-size: 1.875rem;
}

/** font-bold    **/
.font-bold {
	font-weight: 500;
}

.btn-style1 {
	border-radius: 4px;
	background: #2f8bff;
	color: #fff;
}

.btn-style1:hover, .btn-style1:focus {
	background: #1671e4;
	color: #fff;
}

.btn-style1.press, .btn-style1:active {
	background: #0f5fc4;
	color: #fff;
}

.btn-style1:disabled, .btn-style1.disabled {
	background: #eee;
}

/** background-color **/
.gray {
	background-color: #f8f8f8;
}

.font-color-blue {
	color: #3498ff;
}

/** display **/
.dis-ib {
	display: inline-block;
}

.dis-in {
	display: inline;
}

/** border-color-blue **/
.border-color-blue {
	border: 1px solid #3498ff;
}

/** border-color-blue **/
.lh13 {
	line-height: 0.9167rem;
}

.lh30 {
	line-height: 30px;
}
