/*
---
description: Unobtrusive modern scrollbar for elements with fixed heights
license: MIT
copyright: Copyright (c) 2011 by Julian Lam (julianlam).
authors:
- Julian Lam (julianlam)
...
*/

/* Scrollbar CSS */
.scrollbar {
	width: 7px;
	position: absolute;
	top: 120px !important;
	left: 550px !important;
	opacity: 0;
	visibility: hidden;
        z-index: 999;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
        position: absolute;
        background: rgba(255, 255, 255, 0.2);
}

.scrollbar .knob {
	background: #fff;
	width: 7px;
	height: 50px;
	margin: 0px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
	-moz-opacity: 0.75;
	opacity: 0.75;
	/*-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75);*/
        background: #c60808;
}

.scrollbar .knob:hover {
	-moz-opacity: 1;
	opacity: 1;
	/*-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100);*/
}
/* End Scrollbar CSS */
