/* round_scrollbar */
.round_scrollbar{height: 150px}

/* scrollbar : plugin 에서 제공하는 css file을 쓰시거나, 아래처럼 필요한 부분만 가져다가 custom해서 사용하세요. */
.mCustomScrollBox{position: relative; overflow: hidden; height: 100%; max-width: 100%; outline: none;}
.mCSB_container{overflow: hidden; width: auto; height: auto;}
.mCSB_inside > .mCSB_container{margin-right:0px;} /* 스크롤 내용과 스크롤바 사이 margin */
.mCSB_scrollTools{
  position: absolute;
  width: 16px; /* 스크롤바 너비 */
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
}
.mCSB_scrollTools .mCSB_draggerContainer{position: absolute; top: 0; left: 0; bottom: 0; right: 0; height: auto;}
.mCSB_scrollTools .mCSB_draggerRail{background: #fff; width: 2px; height: 100%; position: relative; left:50%; margin-left: -1px;} /* 스크롤바 Rail background 색상, 너비 */
.mCSB_scrollTools .mCSB_dragger{cursor: pointer; width: 100%; z-index: 1;}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ /* 스크롤바 포인터 */
  background: #999;
  position: relative;
  width:4px;
  height:200px;
  margin: 0 auto;
  -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px;
  text-align: center;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:after{ /* 스크롤된 영역 active(option) */
  position: absolute;
  content: "";
  height: 150px; /* scroll 영역 높이 */
  background-color: #999;
  width: 2px;
  bottom:12px; /* 스크롤바 포인터 높이 */
  left:50%;
  margin-left: -1px;
}
