마우스 드래그 방지 코드
html, body, div, span, object,
form, input, h1, h2, button, label, a, img {
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
/* this will work for QtWebKit in future */
-webkit-user-drag: none;
}
input[type=text] {
-moz-user-select: text;
-webkit-user-select: text;
}