﻿/* Let's get this party started */
::-webkit-scrollbar {
    width: 8px;
    height:12px;
    background-color:#fff;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px #333333;    
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background-color:#808080;
    -webkit-box-shadow: none 0 0 6px #fff;
}
::-webkit-scrollbar-thumb:hover {
    -webkit-box-shadow: inset 0 0 2px #fff; 
}
::-webkit-scrollbar-thumb:window-inactive {
	background-color:#fff;
}
​	::-webkit-scrollbar-button {
background-color: #333333;
} /* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */

::-webkit-scrollbar-corner {
background-color: #333333;
} /* if both the vertical and the horizontal bars appear, then perhaps the right bottom corner also needs to be styled */ ​​ 
