/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/
.meter { 
	height: 20px;  /* Can be anything */
	position: relative;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	padding: 10px;
}
.meter > span {
	display: block;
	height: 100%;
	position: relative;
}
/*@-webkit-keyframes move {
	0%{
	   background-position: 0 0;
	}
	100% {
	   background-position: 50px 50px;
	}
}
*/
.orange > span {
	background-color: #f9583b;
	height:22px;
	//-webkit-animation: move 2s infinite alternate;
	//animation: move 2s infinite alternate;
}