/* ScrollBar Fino*/
/* width */
::-webkit-scrollbar {width: 5px; height: 7px;}
::-moz-scrollbar {width: 5px; height: 7px;}
::-ms-scrollbar {width: 5px; height: 7px;}

/* Track */
::-webkit-scrollbar-track {background: #eee;}
::-moz-scrollbar-track {background: #eee;}
::-ms-scrollbar-track {background: #eee;}

/* Handle */
::-webkit-scrollbar-thumb {background: #888;}
::-moz-scrollbar-thumb {background: #888;}
::-ms-scrollbar-thumb {background: #888;}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {background: #555;}
::-moz-scrollbar-thumb:hover {background: #555;}
::-ms-scrollbar-thumb:hover {background: #555;}

