﻿/*  Only override the top/bottom locations of '.internalScroll' inside of the theme stylesheet */
.iscroll
{
	overflow-y: hidden; /* modify this x/y direction if you need to scroll horizontally as well/instead */
	-webkit-overflow-scrolling: touch; /* this causes momentum scrolling & rubber band stops for iOS */
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.internalScroll
{
	position: absolute;
	left: 0px;
	right: 0px;
	top: 75px; /* override in theme implementation, set to height of top static bar*/
	bottom: 75px; /* override in theme implementation, set to height of bottom static bar*/

	z-index:2;
	overflow-y: hidden;
	
	-webkit-overflow-scrolling: touch; /* this causes momentum scrolling & rubber band stops for iOS */
}

.internalScrollX
{
	position:relative;
	padding: 10px;
	overflow-x: hidden;
	
	-webkit-overflow-scrolling: touch; /* this causes momentum scrolling & rubber band stops for iOS */
}

.scrollbar
{
	position: absolute;
	right: 5px;

	height: 10px;
	width: 10px;
	/*background-color: rgba(255, 255, 255, .5);*/
	background-color: rgb(0, 0, 0);
	
	border-radius: 3px;
	cursor: pointer;

	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
}