﻿.scrollpanel 
{
    min-width: 200px;
    width:100%;
	height:auto; max-height:600px;
	
	display: block;
	overflow: auto;
	border: solid 1px #ccc;
	border-style:none;
	padding: 2px 0px 0px 1px;
}
/* Let's get this party started */
.scrollpanel {
	scrollbar-base-color: #C0C0C0;
	scrollbar-base-color: #C0C0C0;
	scrollbar-3dlight-color: #C0C0C0;
	scrollbar-highlight-color: #C0C0C0;
	scrollbar-track-color: #EBEBEB;
	scrollbar-arrow-color: black;
	scrollbar-shadow-color: #C0C0C0;
	scrollbar-dark-shadow-color: #C0C0C0;
}
.scrollpanel::-webkit-scrollbar {
    width: 12px;
}
.scrollpanel::-webkit-scrollbar-button 
{
    background-color: rgba(150,150,150,1); 
    border-radius:3px;
}
/* Track */
.scrollpanel::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(0,0,0,0.4);
}
/* Handle */
.scrollpanel::-webkit-scrollbar-thumb {
	background: rgba(220,220,220,0.8);
	border-radius:5px;
	box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}
.scrollpanel::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(225,225,225,0.4);
}
