@charset "UTF-8";

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;
}

html, 
html * {
	padding: 0;
	margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

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;
}

input,
textarea {
    font-family: inherit;
    border:none;
    background-image:none;
    background-color:transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #999;
    opacity: 1; /* Firefox */
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #999;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
    color: #999;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

button {
    background-color: #fff;
    border: 0;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: middle;
}


input:-ms-input-placeholder {
    color: #999;
    font-weight: 400;
    font-family: inherit;
    font-size: 14px;
}

input::-webkit-input-placeholder { 
    color: #999;
    font-weight: 400;
    font-family: inherit;
    font-size: 14px;
} 

input::-moz-placeholder { 
    color: #999;
    font-weight: 400;
    font-family: inherit;
    font-size: 14px;
}

/* placeholder 포커스시 감추기 */
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder { 
    /* WebKit browsers */ 
    color:transparent; 
} 

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */ 
    color:transparent; 
 } 

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder { 
    /* Mozilla Firefox 19+ */ 
    color:transparent; 
} 

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    /* Internet Explorer 10+ */ 
    color:transparent; 
} 

/* 화살표 증-감 삭제 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input::-ms-clear {
    display: none;
}

/* 화살표 없애기 for IE10, 11*/ 
select {
    -webkit-appearance: none;
    -moz-appearance: none;  
    appearance: none;         
}

select::-ms-expand{
    display:none;
}
