#content{
	width: 210px;
	height: 600px;
	margin: 20px auto 0 auto;
}
.clear{
	width: 100%;
	clear: both;
}
#themp{
	float: left;
	width: 50px;
	height: 490px;
	margin: 0 auto 0 33px;
	background-image: linear-gradient(to bottom, red, orange, yellow, green, blue);
	border-radius: 25px 25px 0 0;
}
#drag{
	cursor: pointer;
	position: relative;top: 149px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-image: url(../img/drag.png);
	border-top: 1px solid #eee;
	border-left: 1px solid #999;
	border-right: 1px solid #999;
	border-bottom: 1px solid #222;
	opacity: .7;
}
#result{
	float: left;
	width: 100px;
	height: 100px;
	margin: -50px auto 0 auto;
	border-radius: 50%;
	background-color: blue;
	color: yellow;
	line-height: 100px;
	font-size: 40px;
	padding: 8px;
}
#value{
	margin: 7px auto 0 0;
	float: left;
	width: 50px;
	height: 350px;
}
.num{
	display: inline-block;
	position: relative;
	top: 10px;
	margin-bottom: 49.5px;
	float: right;
	clear: right;
	font-size: 22px;
}
.long{
	margin: 13px;
	height: 2px;
	width: 50px;
	background-color: #000;
}
.short{
	margin: 14px;
	height: 1px;
	width: 35px;
	background-color: #000;
}













/*
input[type=range]{
	cursor: pointer;
	-webkit-appearance: none;
	width: 400px;
	background-image: linear-gradient(to right, red, orange, yellow, green, blue);
	height: 40px;
	border-radius: 20px 0 0 20px;
	transform: rotate(90deg);
	margin: 250px auto;
	opacity: .8;
	transition: all .25s ease;
}
input[type=range]:hover{
	opacity: 1;
}
input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 38px;
	width: 38px;
	background-color:  #111;
	border: 2px solid #eee;
	border-radius: 50%;
}
input::-moz-range-thumb {
	height: 38px;
	width: 38px;
	background-color:  #111;
	border: 2px solid #eee;
	border-radius: 50%;
}
*/