@charset "utf-8";


/*= Default 폰트 기본설정 ========= */

@import url('../font/fonts.css'); /* web-font, icon-font */

/* = CSS Document ============= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
	box-sizing:border-box;
}

html,
body {
    width: 100%;
	font-family:'Malgun Gothic','맑은 고딕','Noto Sans KR','Roboto','dotum';
	letter-spacing:-1px;
	font-size:100%;
	font-weight:normal;
	color:#333;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    vertical-align: top;
    max-width: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

ul::after {
    content: "";
    display: block;
    clear: both;
}


/* Form */
input, select, textarea {outline:none;}
input:focus {outline: none !important;}
button {border: none; font-family: inherit; background: transparent; cursor: pointer;}
button:active {outline: none;}
button:focus {outline: none;}
textarea {box-sizing:border-box;}
select {cursor:pointer; box-sizing:border-box;}

input[type="radio"] {vertical-align:middle; box-sizing:border-box;}
input[type="checkbox"] {vertical-align:middle; box-sizing:border-box;}
input[type="text"] {box-sizing:border-box;}
input[type="submit"] {vertical-align:middle; cursor:pointer; border:none; box-sizing:border-box; appearance: none; -webkit-appearance: none;}
input[type="file"] {cursor:pointer; vertical-align:middle; box-sizing:border-box;}
input[type="text"], input[type="password"], input[type="submit"], button {appearance: none; -webkit-appearance: none; -moz-appearance: none;}
input[readonly="readonly"] {vertical-align:middle; box-sizing:border-box;}
textarea[readonly="readonly"] {vertical-align:middle; box-sizing:border-box;}