
div {
	/* firefox */
	scrollbar-width: thin;
	scrollbar-color: #404040 #1c1c1c;
	
	/* IE */
	scrollbar-face-color: #1c1c1c;
	scrollbar-arrow-color: #404040;
	scrollbar-track-color: #272727;
	scrollbar-shadow-color: #272727;
	scrollbar-3dlight-color: #272727;
	scrollbar-highlight-color: #272727;
	scrollbar-darkshadow-color: #272727
}
/* chrome */
::-webkit-scrollbar {
	width: 14px;
	height: 14px;
	background-color: #272727
}
::-webkit-scrollbar-thumb {
	-webkit-border-radius: 3px;
	background-color: #343434;
}
::-webkit-scrollbar-thumb:vertical {
	border-left: 1px solid #1c1c1c;
	background-image: -webkit-linear-gradient(left, #1d1d1d, #1d1d1d 7%, #4e4e4e 8%, #3e3e3e 50%, #373737)
}
::-webkit-scrollbar-thumb:horizontal {
	border-top: 1px solid #1c1c1c;
	background-image: -webkit-linear-gradient(top, #1d1d1d, #1d1d1d 7%, #4e4e4e 8%, #3e3e3e 50%, #373737)
}
::-webkit-scrollbar-corner {
	background-color: #2f2f2f;
	border-top: 1px solid #1c1c1c;
	border-left: 1px solid #1c1c1c;
	-webkit-box-shadow: #151515 0 1px inset !important;
}