/* basic scrollbar styling */
/* vertical scrollbar */
.mcsb_container{
	width:auto;
	margin-right:30px;
	overflow:hidden;
}


.mcustomscrollbox>.mcsb_scrolltools{
	width:16px;
	height:100%;
	top:0;
	right:0;
}
.mcsb_scrolltools .mcsb_draggercontainer{
	position:absolute;
	top:0;
	left:11px;
	bottom:0;
	right:0;
	height:auto;
}

.mcsb_scrolltools .mcsb_draggerrail{
	width:5px;
	height:100%;
	margin:0 auto;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
}
.mcsb_scrolltools .mcsb_dragger{
	cursor:pointer;
	width:100%;
	height:30px;
}
.mcsb_scrolltools .mcsb_dragger .mcsb_dragger_bar{
	width:5px;
	height:100%;
	/*margin:0 auto;*/
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
	text-align:center;
}


/* default scrollbar colors and backgrounds (default theme) */


.mcsb_scrolltools .mcsb_draggerrail{
	background:#e4dacf; /* rgba fallback */
	/*background:rgba(0,0,0,0.4);
	filter:"alpha(opacity=40)"; -ms-filter:"alpha(opacity=40)";*/ /* old ie */
}
.mcsb_scrolltools .mcsb_dragger .mcsb_dragger_bar{
	background:#926c3c; /* rgba fallback */
	/*background:rgba(255,255,255,0.75);
	filter:"alpha(opacity=75)"; -ms-filter:"alpha(opacity=75)"; /* old ie */*/
}


