@charset "utf-8";
/* CSS Document */

/* Turn on a 13x13 scrollbar */
::-webkit-scrollbar {
    width: 13px;
    height: 13px;
}
 
::-webkit-scrollbar-button:vertical {
    background-color: #333;
    border: 1px solid #666;
}
 
/* Turn on single button up on top, and down on bottom */
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: block;
}
 
/* Turn off the down area up on top, and up area on bottom */
::-webkit-scrollbar-button:vertical:start:increment,
::-webkit-scrollbar-button:vertical:end:decrement {
    display: none;
}
 
/* Place The scroll down button at the bottom */
::-webkit-scrollbar-button:vertical:increment {
    background-color: #999;
    border: 1px solid #999;
}
 
/* Place The scroll up button at the up */
::-webkit-scrollbar-button:vertical:decrement {
    background-color: #999;
    border: 1px solid #999;
}
 
::-webkit-scrollbar-track:vertical {
    background-color: #666;
    border: 1px solid #666;
}
 
/* Top area above thumb and below up button */
::-webkit-scrollbar-track-piece:vertical:start {
    border: 1px solid #666;
}
 
/* Bottom area below thumb and down button */
::-webkit-scrollbar-track-piece:vertical:end {
    border: 1px solid #666;
}
 
/* Track below and above */
::-webkit-scrollbar-track-piece {
    background-color: #ccc;
}
 
/* The thumb itself */
::-webkit-scrollbar-thumb:vertical {
    height: 40px;
    background-color: #999;
}
 
/* Corner */
::-webkit-scrollbar-corner:vertical {
    display: none;
}
 
/* Resizer */
::-webkit-scrollbar-resizer:vertical {
    background-color: #333;
}