/*<meta conditions="v8.Win_Only,v9.Win_Only" />*/

/*Custom scroll bar for Windows*/

::-webkit-scrollbar
{
	width: 17.5px;
	height: 17.5px;
}

::-webkit-scrollbar-track
{
	background: white;
}

::-webkit-scrollbar-thumb
{
	border: 5px solid rgba(0, 0, 0, 0);
	border-radius: 18px;
	background-clip: padding-box;
	background-color: rgb(197,197,197);
	height: 27.5px;
}

::-webkit-scrollbar-thumb:active
{
	background-color: rgb(166,166,166);
}

