@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;/*익스10이하에서 a안의 이미지에 선빼기*/
	font-size: 100%;/*모든태그의 폰트크기 body와 동일하게~*/
	font: inherit;/*body에 적용한 font속성 무조건 상속*/
	vertical-align: top;/*이미지가 위아래로 배치될경우 아래쪽간격없게~*/
}
/* HTML5 display-role reset for older browsers */
/*html5에 추가된 시멘틱엘리먼트는 ie8이하에서 좌우로 나열되기때문에 block으로 처리하여 위아래로 배치되게함*/
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
/*디자인시안상의 줄간격을 사용하며
1사용시 글자가 잘릴수있으므로 사용하지않음!!!
선언하지않으면 폰트마다 기본줄간격이 자동으로 설정됨
*/
body {
	line-height: 1.5;
	-webkit-text-size-adjust:none;
}
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;}
/*폼제목인 legend태그를 부모밖으로 내보냄*/
legend {position:absolute; left:0; top:-9999px;}
button {margin:0; padding:0; cursor:pointer;}









