@charset "utf-8";

/* 크로스브라우징을 위한 CSS 초기화 */
*{margin:0; padding:0;} 
html, body, div, span, h1, h2, h3, h4, h5, h6, p, pre {word-break: break-word;}
a{outline:0px;}
a:link{color:#333; text-decoration:none;}                                       
a:hover{color:#333; text-decoration:none;}
a:visited{font-size:15px; color:#333;  text-decoration:none;}
select:focus{outline:none}
caption, legend{font-size:0px; width:0px; height:0px; overflow:hidden; position:absolute; visibility:hidden;}
img{border:0px;}
fieldset,img{border:0; vertical-align:top;}
table{border-collapse:collapse; border-spacing:0; border:0;}
input,textarea,select{font-family:inherit; font-size:inherit; font-weight:inherit;}
input[type=password]{IME-MODE: disabled;}
ul,ol,dl,li{list-style:none; margin:0;}
input:focus::-webkit-input-placeholder {color:transparent;}
textarea:focus::-webkit-input-placeholder {color:transparent;}
textarea:focus{overflow:auto; outline: none;} 
button,label{cursor:pointer;}
hr{display:none; clear:both;}
a {text-decoration: none;}
img {border: none;}
input:focus {outline:none;}
input, select{box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
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%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	font-family: 'Noto Sans KR', sans-serif !important;
    font-size: 16px;
    font-weight: 400; 
    line-height: 1;
    letter-spacing: -0.4px !important;
    color: #333 !important;
}
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;
}

/* 아이폰 사파리 초기화 */
select {
	-webkit-appearance: none;
	-moz-appearance: none; 
	appearance: none;
	
	/*화살표 배경 넣기*/
	background: #fff url('이미지경로') no-repeat 98% center;
}
select::-ms-expand{
	/* 화살표 없애기 for IE10, 11*/ 
	display:none;
}