/**
 * Scrollator jQuery Plugin
 * Scrollator is a jQuery-based replacement for the browsers scroll bar, which doesn't use any space.
 * version 1.0, July 3rd, 2014
 * by Ingi P. Jacobsen
 */
#scrollator_holder {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
}

.scrollator {
	overflow: hidden !important;
}

.scrollator_lane {
	top: 0;
	right: 0;
	bottom: 0;
	width: 9px;
	position: absolute;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 0);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-transition: background 200ms, width 200ms, opacity 200ms;
	-moz-transition: background 200ms, width 200ms, opacity 200ms;
	-ms-transition: background 200ms, width 200ms, opacity 200ms;
	-o-transition: background 200ms, width 200ms, opacity 200ms;
	transition: background 200ms, width 200ms, opacity 200ms;
	opacity: 1;
}

.scrollator_lane.scrollator_body_lane {
	position: fixed;
	margin: 3px 3px 3px 0;
}

.scrollator_lane.hover, 
.scrollator_lane:hover {
	background-color: rgba(0, 0, 0, 0.15);
	width: 15px;
}

.scrollator_handle {
	position: absolute;
	width: 9px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background-color: rgba(0, 0, 0, 0.4);
	-webkit-transition: width 200ms;
	-moz-transition: width 200ms;
	-ms-transition: width 200ms;
	-o-transition: width 200ms;
	transition: width 200ms;
}

.scrollator_lane.hover .scrollator_handle, 
.scrollator_lane:hover .scrollator_handle {
	width: 15px;
}