/* 
 * Scroller v3.0.2 - 2014-02-23 
 * A jQuery plugin for replacing default browser scrollbars. Part of the Formstone Library. 
 * http://formstone.it/scroller/ 
 * 
 * Copyright 2014 Ben Plum; MIT Licensed 
 */ 

	.scroller { overflow: hidden; overflow-x: hidden; overflow-y: hidden; position: relative; }
	.scroller-content {
	height: 213px;
	overflow: auto;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	z-index: 1;
}
	.scroller-bar {
	-moz-border-radius: 8px !important;
	-webkit-border-radius: 8px !important;
	-khtml-border-radius: 8px !important;
	border-radius: 8px !important;
	display: none;
	height: 213px !important;
	position: absolute;
	right: 11px;
	top: 0;
	width: 22px;
	z-index: 2;
	border: 1px solid #B3A17E;
	background-color: #EEE6D8;
	margin: 0px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
}
	.scroller-track {
	-moz-border-radius: 8px !important;
	-webkit-border-radius: 8px !important;
	-khtml-border-radius: 8px !important;
	border-radius: 8px !important;
	height: 212px !important;
	overflow: hidden;
	position: relative;
	width: 100%;
	background-color: #EEE6D8;
	margin: 0px;
	padding: 0px;
}
	.scroller-handle {
	border: 1px solid #D5D5D5;
	border-radius: 5px;
	cursor: pointer;
	height: 20px;
	overflow: hidden;
	position: absolute;
	right: 5px;
	top: 0;
	width: 10px;
	z-index: 2;
	-webkit-transition: right 0.1s linear, width 0.1s linear;
	-moz-transition: right 0.1s linear, width 0.1s linear;
	-ms-transition: right 0.1s linear, width 0.1s linear;
	-o-transition: right 0.1s linear, width 0.1s linear;
	transition: right 0.1s linear, width 0.1s linear;
	background-color: #B3A17E;
	}

	/* Webkit Fix */
	.scroller-content::-webkit-scrollbar,
	.scroller-content::-webkit-scrollbar-button,
	.scroller-content::-webkit-scrollbar-track,
	.scroller-content::-webkit-scrollbar-track-piece,
	.scroller-content::-webkit-scrollbar-thumb,
	.scroller-content::-webkit-scrollbar-corner,
	.scroller-content::-webkit-resizer { background: transparent; opacity: 0; }

	/* Active Scrollbar */
	.scroller-active .scroller-content {
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 0px;
}
	.scroller-active .scroller-bar {
	display: block;
}

	/* Setup Scrollbar - Should match 'active' styles for proper sizing */
	.scroller-active .scroller-content {
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 0px;
}
	.scroller-active .scroller-bar { display: block; }

	/* Horizontal */
	.scroller-horizontal .scroller-content { overflow: auto; overflow-x: auto; overflow-y: hidden; padding: 0 0 10px 0; }
	.scroller-horizontal .scroller-bar { border-left: none; border-top: 1px solid #EEEEEE; bottom: 0; height: 20px; top: auto; width: 100%; }
	.scroller-horizontal .scroller-handle { bottom: 5px; height: 10px; right: auto; top: auto; width: 20px; }
