/*! jQuery Scrollbars | License: https://github.com/nathggns/Scrollbars/blob/master/LICENSE */

.scrollElement.scrollRoot { overflow: hidden; }
.rootWrap {
	overflow-x: auto;
	overflow-y: auto;
}
.scrollElement.axisInUseX .rootWrap { overflow-x: hidden; }
.scrollElement.axisInUseY .rootWrap { overflow-y: hidden; }

.scrollElement.scrollRoot:focus {
	outline: none;
}

.scrollElement.dragConX {
	height: 10px;
	left: 0;
	width: 100%;
	bottom: 0;
}

.scrollElement.dragConY {
	width: 10px;
	top: 0;
	height: 100%;
	right: 0;
}

.scrollElement.dragCon {
	position: absolute;
	background: rgba(0, 0, 0, 0.5);
}

.scrollElement.drag {
	background: #000;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer !important;
}

.scrollElement.dragX {
	min-width: 5%;
	max-width: 95%;
	height: 100%;
}

.scrollElement.dragY {
	min-height: 5%;
	max-height: 95%;
	width: 100%;
}

.scrollElement.dragConInner {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.scrollElement.contentWrap {
	float: left;
	position: relative;
	min-width: 100%;
	min-height: 100%;
}