
b, strong {font-family: 'NotoSansKR Bold'!important;}

/* 링크글자에 점선 안나오게하기 */
a,area,label {blr:expression(this.onFocus=this.blur())} 
:focus { -moz-outline-style:n≠} 
a,label,input {outline:none; select-dummy: expression(this.hideFocus=true);}
button{outline: 0;outline: none;}

/* 이미지와 테이블의 border=0 값 */
img {border:none;}
table {border:0;}
img { -ms-interpolation-mode:bicubic;}
p{margin-top:0; margin-bottom:0}
body,td,div,form,select{font-family: 'NotoSansKR Regular';letter-spacing:-.05em}
textarea,pre{font-family: 'NotoSansKR Regular';font-size:13px;letter-spacing:-.05em}
form{margin:0; padding:0;}
a,label{cursor:pointer;}

A:link{text-decoration:none;}
A:visited{text-decoration:none;}
A:hover{text-decoration:none;}
A {outline:none; select-dummy: expression(this.hideFocus=true);}

/* 드래그 할때의 색깔 */
::selection {background:#ffe133;color: #000;text-shadow: none;}
::-moz-selection {background:#ffe133;color: #000;text-shadow: none;}
::-webkit-selection {background:#ffe133;color: #000;text-shadow: none;}

/* input 의 placeholder의 색상지정 (익스때문에) */
input::-webkitebkit-input-placeholder { /* Chrome */
  color: #aeaeae;
  transition: opacity 250ms ease-in-out;
}
input:-ms-input-placeholder { /* IE 10+ */
  color: #aeaeae;
  transition: opacity 250ms ease-in-out;
}
input::-moz-placeholder { /* Firefox 19+ */
  color: #aeaeae;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
input:-moz-placeholder { /* Firefox 4 - 18 */
  color: #aeaeae;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
textarea::-webkitebkit-input-placeholder { /* Chrome */
  color: #aeaeae;
  transition: opacity 250ms ease-in-out;
}
textarea:-ms-input-placeholder { /* IE 10+ */
  color: #aeaeae;
  transition: opacity 250ms ease-in-out;
}
textarea::-moz-placeholder { /* Firefox 19+ */
  color: #aeaeae;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
textarea:-moz-placeholder { /* Firefox 4 - 18 */
  color: #aeaeae;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}

/* 모바일 하이라이트 제거 */
a,td { -webkit-tap-highlight-color:transparent;}

/* 모바일 input 그림자 문제 해결 (PC에서는 사용할 필요없음)*/
input:not(old){
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
 }
 textarea{
	-webkit-appearance: none; 
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
 }

