@charset "utf-8";

/* 아래 태그요소들만 여백을 초기화 한다. 나중에 필요한 태그 추가 또는 삭제 해도 됨.*/
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%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
/* 아주 옛날 브라우저에서 html5 구조태그가 블럭방식으로 인식되게 한다. */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {line-height: 1;} /* 줄간격 100% */
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;
}