/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */ 
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 { line-height: 1; } 
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; }

a:hover{text-decoration: none;}
a:visited{text-decoration: none;}
a:active{text-decoration: none;}
a:link{text-decoration: none;}

::-webkit-scrollbar {
    width: 8px;  /* 세로축 스크롤바 길이 */
    height: 8px;  /* 가로축 스크롤바 길이 */
  }
  ::-webkit-scrollbar-track {
    background-color: #e9e9e9;
  }
  ::-webkit-scrollbar-track-piece {
    background-color: #e9e9e9;
  }
  ::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background-color: #d2d3d5;
  }
  ::-webkit-scrollbar-button {
    background-color: none;
    width: 20px;
    height: 10px;
  }
  ::-webkit-scrollbar-button:start {
    background-color: #e9e9e9;; /* Top, Left 방향의 이동버튼 */
  }
  ::-webkit-scrollbar-button:end {
    background-color: #e9e9e9;; /* Bottom, Right 방향의 이동버튼 */
  }
  ::-webkit-scrollbar-button:vertical:increment {
  }
  ::-webkit-scrollbar-button:vertical:decrement {
  }
  ::-webkit-scrollbar-corner {
    background-color: none; /* 우측 하단의 코너 부분 */
  }
  ::-webkit-resizer {
    background-color: none;
  }