/* common css */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
    -o-box-sizing: border-box;
	font-family:'Roboto';
    letter-spacing: -0.05em;
	-webkit-text-size-adjust: none;
	max-width: 100%;	
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, hr, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, span, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, form, label, 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-weight: inherit;
    font-size: 20px;
	font-family: inherit;
    vertical-align: baseline;
	background-repeat:no-repeat !important;
    letter-spacing: -0.05em;
}

input,
select {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-variant: normal;
    font-weight: inherit;
	font-family:'Roboto';
    letter-spacing: -0.05em;
}

input[type='number'],
input[type='text'],
input[type='password'],
textarea,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none
}

input[type='number']:focus,
input[type='text']:focus,
input[type='password']:focus,
textarea:focus,
button:focus,
select {
	outline:none
}

input,
select {
	padding: 0 5px
}

input[type='file'] {
	padding: 0
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	font-size:12px;
   	color:#aaa;
	font-family:'Roboto';
    letter-spacing: -0.05em;
}
input:focus::-webkit-input-placeholder {
    color: transparent !important
}
input:focus::-moz-placeholder {
    color: transparent !important
}
input:focus:-ms-placeholder {
    color: transparent !important
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

body {
	font-family:'Roboto';
	word-break: keep-all;
    -webkit-text-size-adjust: none
}

ol, ul {
    list-style: none
}
blockquote,
q {
    quotes: '"' '"'
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none
}
table {
    border-collapse: separate;
    border-spacing: 0;
	
}


table, dl {
	font-family:'Roboto';
}

address {
    font-style: normal
}

textarea {
    width: 100%;
    resize: none;
}

button, img, input, select {
    vertical-align: middle
}
button {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    font: inherit;
    color: inherit;
    cursor: pointer;
    border-radius: 0
}

input,
textarea,
button,
select,
a,
.btn {
	font-family:'Roboto';
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0,0,0,0)
}

input,
select,
textarea {
	background-color:#fff;
	padding: 0 5px;
	border:1px solid #d9d9d9
}

/* input:focus,
select:focus,
textarea:focus {
	background-color:#fff !important;
	outline:none;
	border-color:#cdcdcd;
	box-shadow: 0 0 10px #cdcdcd
} */

input:-webkit-autofill { 
	-webkit-box-shadow: 0 0 0 30px #fff inset ; 
	-webkit-text-fill-color: #000
} 
input:-webkit-autofill, 
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s
}

a {
    font-size: inherit;
    color: inherit;
    text-decoration: none
}

img {
    border: 0;
	max-width:100%;
	image-rendering: -moz-auto;         
	image-rendering:   -o-auto;       
	image-rendering: -webkit-optimize-contrast;
	image-rendering: auto;
	-ms-interpolation-mode: nearest-neighbor;  
	-ms-interpolation-mode: bicubic;
}

em, strong {
    font-size: inherit;
    line-height: inherit
}

/* common */
body, html {
	/* overflow-x:hidden; */
	min-width:320px
}

body {
	font-family:'Roboto';
}

body, a {
	color:#222
}


.div-table {
	display:table;
	width: 100%;
	height: 100%;
}

.div-tablecell {
	display:table-cell;
	vertical-align:middle;
}

ul.inbl {
	font-size:0
}

ul.inbl > li {
	display:inline-block
}

.F-left,
dt {
	float:left
}

.F-right,
dd {
	float:right
}

.T-left {
	text-align:left;
	padding-left:5px;
}

.T-center {
	text-align:center !important;
}

.T-right {
	text-align:right;
	padding-right:5px;
}
.Fixed {
	position:fixed
}

.Rel {
	position:relative
}

.Abs {
	position:absolute
}

.Block {
	display:block
}

.Inblock {
	display:inline-block
}

.Clearfix, ul, dl, .div-inner {
	*zoom:1
}

ul::after,
dl::after,
.Clearfix::after,
.div-inner::after {
	content:'';
	display:block;
	clear:both
}

.Ellipsis {
	display:inline-block;
	max-width:100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-wrap: normal;
	vertical-align:middle
}
.Elli {
	overflow: hidden;
	white-space:nowrap;
	word-wrap: normal;
	-webkit-line-clamp: 1;
	vertical-align:middle;
	text-overflow: ellipsis;
}

table .Ellipsis {
	overflow: hidden;
    height: auto;
    white-space: normal;
    word-wrap:break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.blur{
    filter: blur(10px);
}




/* width 고정값 */
.w1 {width:1%;}
.w2 {width:2%;}
.w3 {width:3%;}
.w4 {width:4%;}
.w5 {width:5%;}
.w6 {width:6%;}
.w7 {width:7%;}
.w8 {width:8%;}
.w9 {width:9%;}
.w10 {width:10%;}
.w12 {width:12%;}
.w13 {width:13%;}
.w14 {width:14%;}
.w15 {width:15%;}
.w20 {width:20%;}
.w21 {width:21%;}
.w22 {width:22%;}
.w23 {width:23%;}
.w24 {width:24%;}
.w25 {width:25%;}
.w27 {width:27%;}
.w30 {width:30%;}
.w33 {width:33%;}
.w35 {width:35%;}
.w37 {width:37%;}
.w40 {width:40%;}
.w45 {width:45%;}
.w50 {width:50%;}
.w55 {width:55%;}
.w60 {width:60%;}
.w40 {width:40%;}
.w45 {width:45%;}
.w50 {width:50%;}
.w55 {width:55%;}
.w60 {width:60%;}
.w65 {width:65%;}
.w70 {width:70%;}
.w75 {width:75%;}
.w80 {width:80%;}
.w85 {width:85%;}
.w90 {width:90%;}
.w95 {width:95%;}
.w100 {width:100%;}


*{-webkit-tap-highlight-color: transparent !important;}