/*
reset.css
html문서의 스타일을 만들기 쉽게 하기 위해 스타일을 사용 초기에 설정합니다.
초기설정하기 위한 CSS문서를 CSS초기화라고 합니다.
*/

/*
b요소제거
main요소, hr요소 추가
*/
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, 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, hr,
figure, figcaption, footer, header, hgroup, main,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	/*font-size: 100%;*/
	font: inherit;
	vertical-align: baseline;
    
    /*추가속성*/
    box-sizing: border-box;
    
    direction: ltr;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
/*body {
	line-height: 1;
}*/
ol, ul, menu {
	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{
    color: inherit;
    text-decoration: none;
}
/*form reset*/
button, input, option, label, select, textarea{
    box-sizing: border-box;
}
form{
    display: block;
}
button{
    width: 40px; height: 40px;
    background-color: transparent;
    border: 0; border-radius: 8px;
    font: inherit; cursor: pointer;
}
*:focus{
    outline: 0;
}