/* Import fonts */

@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(http://fonts.googleapis.com/earlyaccess/notosanssc.css);

/* BASIC THEME CONFIGURATION */


/*  한국어 */

:lang(ko) {
    font-family: 'Noto Sans KR', sans-serif;
}


/* 일본어 */

:lang(ja) {
    font-family: 'Noto Sans JP', sans-serif;
}


/* 중국어 (간체) */

:lang(zh-Hans) {
    font-family: 'Noto Sans SC', sans-serif;
}

html,
body,
div,
span,
object,
iframed,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvs,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    color: #797979;
    background: #f2f2f2;
    font-family: 'Noto Sans KR', sans-serif !important;
    padding: 0px !important;
    margin: 0px !important;
    font-size: 13px;
}

ul li {
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

.btn {
    cursor: pointer;
}
.blue_btn{
    background: none;
    color: #548ee8;
    border: 1px solid #4182e6;
    border-radius: 4px;
}
.blue_btn:hover{
    color: #284ae8;
    border: 1px solid #1135e6;
}

.red_btn{
    background: none;
    color: #e84135;
    border: 1px solid #e62123;
    border-radius: 4px;
}
.red_btn:hover{
    color: #e82124;
    border: 1px solid #e60507;
}

img {
    width: 100%;
    height: auto;
}