@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%;/*모든 태그의 폰트크기를 body에 지정한 크기로 맞춤*/
	font: inherit; /*간혹 폰트 상속을 받지 않는 태그도 폰트를  body에서 상속받도록함*/
	vertical-align: top;/*세로정렬
								a태그 안에 img가 있을 경우 vertical-align:baseline이면 img 아래쪽으로 1-3px간격이 벌어지므로 top으로 맞춰야함*/
							/*vertical-align(요소끼리의 세로정렬 테스트)좌우로 배치된 인라인, 인라인-블럭엘리먼트의 높이가 서로 다를때 사용하며 옆으로 배치되는 모든요소에 걸어야함*/
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;/*가장 많이 쓰는 것이 1.5 , 1.3~1.5정도 씀*/
}
ol, ul {
	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;
}
a {text-decoration:none;}
button {margin:0; padding:0; cursor:pointer; border:none;}

