/*
  
  RollBar - jQuery ScrollBar Plugin
  -----------------------------------------------
  
  @author   flGravity
  @created  4/4/12
  @version  1.5
  @site     http://codecanyon.net/user/flGravity
  
*/


/* rollbar paths style */

.rollbar-path-vertical, .rollbar-path-horizontal {
	position: absolute;
	background-color: #ddd; 
	z-index: 100;
}

.rollbar-path-horizontal {
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 10px;
}

.rollbar-path-vertical {
	right: 5px; 
	top: 0; 
	height: 90% !important; 
	width: 0; 
}


/* rollbar paths inner shadow */



/* rollbar handle style */
 
.rollbar-handle{
	position: relative;
	top: 0;
	left: -4px;
	background-color: #333; 
}


/* prevent handle selection */

.rollbar-handle {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.rollbar-path-vertical .rollbar-handle {
	height: 40px !important;
	width: 6px;
} 

.rollbar-path-horizontal .rollbar-handle {
	width: 20%;
	height: 100%;
}


/* round corners for rollbar handle and paths */


