input[type=range] {
	-webkit-appearance: none;
	width: 100%;
	height: 18px;
	margin-top: -12px;	/* required for IE */
	background-color: transparent;
}

input[type=range]:focus {
	outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 4px;
	cursor: pointer;
	animate: 0.2s;
	/*background: rgb(107, 149, 191);*/ /* charis 20161216 */
	background: rgb(4, 106, 56); /* charis 20161216 */
}

input[type=range]::-webkit-slider-thumb {
	border: 1px solid #000000;
	height: 14px;
	width: 6px;
	background: #ffffff;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -6px;
	border-radius: 2px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
	/*background: #367ebd;*/ /* charis 20161216 */
	background: rgb(132, 189, 0); /* charis 20161216 */
}

input[type=range]::-moz-range-track {
	width: 100%;
	height: 4px;
	cursor: pointer;
	animate: 0.2s;
	background: rgb(107, 149, 191);
}

input[type=range]::-moz-range-thumb {
	height: 14px;
	width: 6px;
	background: #ffffff;
	cursor: pointer;
	border-radius: 2px;
}

input[type=range]::-ms-track {
	width: 100%;
	height: 4px;
	cursor: pointer;
	animate: 0.2s;
	border: 0px;
	background: transparent;
	border-color: transparent;
	color: transparent;
}

input[type=range]::-ms-fill-lower {
	background: rgb(107, 149, 191);
	border: 0px;
	border-radius: 2px;
}

input[type=range]::-ms-fill-upper {
	background: rgb(107, 149, 191);
	border: 0px;
	border-radius: 2px;
}

input[type=range]::-ms-thumb {
	border: 1px solid #000000;
	border-radius: 2px;
	height: 14px;
	width: 6px;
	background: #ffffff;
	cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
	background: rgb(107, 149, 191);
}

input[type=range]:focus::-ms-fill-upper {
	background: rgb(107, 149, 191);
}