html, body {
	position: relative;
	width: 100%;
	height: 100%;
}
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, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	scrollbar-darkshadow-color: #fff;
}
ol, ul ,li{
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body {
	color: #333;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans KR",sans-serif
}

a {
	color:#111;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:visited {
	color: #111;
}

label {
	display: block;
}

input, button, select, textarea {
	font-size: inherit;
	box-sizing: border-box;
	border:none;
}
input:focus,textarea:focus{
	outline:none;
}
input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
	border:none;
}

button:disabled {
	color: #999;
}


button:focus {
	border-color: #666;
}

::-webkit-scrollbar {
    width: 15px;
		height:15px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(79, 81, 99, 0.5);
		border-radius: 9px;
		border: 4px solid transparent;
		background-clip: padding-box;
		
  }
::-webkit-scrollbar-track {
		background-color: transparent;
}
::-webkit-scrollbar-corner {
		background-color: transparent;
		border-radius:0 0 10px 0;
}
:hover::-webkit-scrollbar{
	opacity: 1;
	display: block;
	transition:all 0.3s;
}
body::-webkit-scrollbar{
	opacity: 1;
	display: block;
}