/*=================================================================================
 * reset
 =================================================================================*/
 * {
	margin:0;
	padding:0;
	box-sizing: border-box; 
	-webkit-text-size-adjust: none; /* 모바일 웹 브라우저의 가로뷰에서 글자 크기가 확대되는 현상 방지 */
}
body {
	word-break:keep-all; 
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	position: relative;
	margin: 0 auto;
}
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, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, button {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style:normal; 
	list-style:none; 
	line-height:inherit; 
	word-break:inherit; 
 	word-wrap:inherit; 
 	box-sizing:border-box; 
	font: inherit;
	vertical-align: middle;
	
 	box-sizing:border-box; 
 	-webkit-box-sizing:border-box; 
 	-moz-box-sizing:border-box; 
 	-o-box-sizing:border-box;
}

/* Reset*/
html, body {
	height:100%;
}
ol, ul, li, dl, dt, dd {
	list-style: none;
}
fieldset, iframe {
	width:100%; border:0px;
}
img, a, frame, iframe, fieldset {
	border:0;
}
noscript, caption, legend {
	display:block;
	position:absolute;
	width:0;
	height:0;
	text-indent:-9999999px;
	overflow:hidden;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

button{cursor:pointer;}
a {text-decoration:none; vertical-align:middle; word-wrap:break-word; outline:none; cursor:pointer;}
a:active, visited, link {text-decoration:none;}
a:hover {text-decoration:none;}
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {outline:0;}
button{background-color:transparent; cursor: pointer;}


blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;  /* 기본 아이콘 숨기기 */
    position: absolute;
    width: 100%;
    height: 100%;
}
