/* @override http://underdog.47dev.com/css/scrollbars.css */

#left-col ::-webkit-scrollbar {
    width: 15px;
    height: 15px;
}

/* Turn on single button up on top, and down on bottom */
#left-col ::-webkit-scrollbar-button:start:decrement,
#left-colt ::-webkit-scrollbar-button:end:increment {
    display: none;
}

/* Turn off the down area up on top, and up area on bottom */
#left-col ::-webkit-scrollbar-button:start:increment,
#left-col ::-webkit-scrollbar-button:end:decrement {
    display: none;
}

#left-col ::-webkit-scrollbar-track {
    -webkit-border-image: url(/images/scrollbar.png) 7 7 7 7 / 7px 7px 7px 7px stretch repeat;
    border-width:7px;
}

/* Top area above thumb and below up button */
#left-col ::-webkit-scrollbar-track-piece:start {
    border: none;
}

/* Bottom area below thumb and down button */
#left-col ::-webkit-scrollbar-track-piece:end {
    border: none;
}

/* Track below and above */
#left-col ::-webkit-scrollbar-track-piece {
    background-color: transparent;
}

/* The thumb itself */
#left-col ::-webkit-scrollbar-thumb {
    -webkit-border-image: url(/images/scrollbar.png) 7 7 7 7 / 7px 7px 7px 7px stretch repeat;
    border-width:7px;
    -webkit-transition:0.2s linear;
}

/* Corner */
#left-col ::-webkit-scrollbar-corner {
    background-color: transparent;
}
