/*
  
  RollBar - jQuery ScrollBar Plugin
  -----------------------------------------------
  
  @author   flGravity
  @created  4.4.12
  @version  1.0
  @site     http://codecanyon.net/user/flGravity
  
*/

/* rollbar paths style */
.rollbar-content {width: 100%;}
.rollbar-path-vertical, .rollbar-path-horizontal {
	position: absolute;
	background-color: rgb(245,245,245);
	z-index: 100;
    padding: 3px;
}

.rollbar-path-horizontal {
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 7px;
    border-top: 1px solid rgb(229, 229, 229);
    border-bottom: 1px solid rgb(229, 229, 229);
}

.rollbar-path-vertical {
	right:0; 
	top: 0 !important; 
	height: 100% !important; 
	width: 7px !important;
    border-left: 1px solid rgb(229, 229, 229);
    border-right: 1px solid rgb(229, 229, 229);
}

/* rollbar handle style */
 
.rollbar-handle{
	position: relative;
	top: 0;
	left: 0;
	background-color: rgb(194, 194, 194);
}

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

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


/* round corners for rollbar handle and paths */

.rollbar-handle {
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
	border-radius: 5px;
}



