@charset "UTF-8";

/*!
 * css reset common v6.0.1   |   20190820
 *
 * Include: _reset.css
 * Include: layout.css
 *
 * Copyright on 2013 - 2019 Hwang mi-ran, All right reserved.
 * Reference: Eric Meyer reset(http://meyerweb.com/eric/tools/css/reset/)
 * ran_work@wdcals.co.kr
 * ran_work@nate.com
 * License: none
 *
 * Please do not remove the comment(sourcecode is allowed to be edited and redistributed)
 *
 * Last Update. 2019-08-20
 */

/* 요소(element) 여백 초기화 ------------------------------------------------------------------------------------ */
	/* 기본요소 여백 정의 */
	html, body, div, span, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, a,
	blockquote, p, address, pre, cite, form, fieldset, legend, input, textarea, select,
	figure, figcaption, details, table, th, td, section, article, aside, footer, header, menu, nav, hgroup{
		-webkit-box-sizing: border-box;	/* Sfari and Chrome, other webkit surpport */
		-moz-box-sizing: border-box;	/* FireFox and other Gecko surpport */
		box-sizing: border-box;			/* Opera and IE8+ surpport */
		margin: 0; padding: 0;
	}
	:after,:before{box-sizing: border-box;}

	/* 링크요소 */
	a{vertical-align: top; text-decoration: none; display: inline-block;}



/* Tag Layout 초기화 -------------------------------------------------------------------------------------------- */
	/* 폼요소 */
	button{font-family: inherit; white-space: nowrap; border: none; overflow: visible; cursor: pointer;}
	input[type="button"]{-webkit-appearance: none; -moz-appearance: none; -ms-appearance: none; -o-appearance: none; appearance: none;}

	/* 제목요소 */
	h1, h2, h3, h4, h5, h6{font-size: 100%; font-weight: normal;}

	/* 수평선*/
	hr{display: none;}

	/* 테두리 */
	fieldset, img, abbr,acronym{border: 0 none;} 

	/* 목록 */
	ol, ul{list-style: none;}

	/* 테이블 */
	table{border-collapse: collapse; border-spacing: 0;}
	caption, th, td{font-weight: normal;}

	/* 텍스트 관련 요소 */
	address, strong, em, cite{font-weight: normal;	font-style: normal;}
	ins{text-decoration: none;}
	del{text-decoration: line-through;}

	/* 인용문 */
	blockquote:before, blockquote:after, q:before, q:after{content:"";}
	blockquote,q{quotes:"" "";}

	/* 숨김 요소 */
	legend, .hidden, .a11y{/*width: 1px; height: 1px; */ color: transparent; font-size: 0; line-height: 0; overflow: hidden; visibility: hidden; display: none;}



/* HTML5 Element surpport --------------------------------------------------------------------------------------- */
	section, article, aside, footer, header, main, menu, nav, hgroup, figure, figcaption, details, summary{display:block;}
