.mb_slider {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.mb_sliderBar {
	border-radius: 7px;
	border: 1px solid #f8f8f8;
	height: 100%;
	width: 100%;
	cursor: default;
}

.mb_sliderThumb {
	padding: 0 28px;
	background-color: #f0f0f0;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 7px;
	border: 1px solid white;
	/*box-shadow: rgba(0, 0, 0, 0.11) 1px 1px 4px 1px;*/
	cursor: default;
	height: 100%;
	transition: background 0.2s;
	-webkit-transition: background 0.2s;
	-moz-transition: background 0.2s;
}

.mb_sliderThumb:hover {
	background-color: #C8E8ff;
}

.mb_sliderThumb:active {
	background-color: #C8E8ff;
}

.mb_sliderFill {
	position: absolute;
	height: 100%;
	margin: 0;
	top: 0;
	min-width: 10px;
	border: 1px solid #f8f8f8;
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
	border-right-width: 0;
	background: #bbb;
	cursor: default;
}



