.counter-group {
	display: block;
	margin: 5px auto;
	height: 60px;
}
.counter-group:before,
.counter-group:after {
	content: " ";
	display: table;
}
.counter-group:after {
	clear: both;
}
.counter-block {
	float: left;
	margin-right: 5px;
}
.counter-block .counter {
	position: relative;
	width: 52px;
	height: 35px;
	overflow: hidden;
	font-weight: 300;
	font-family: "Yanone Kaffeesatz";
}
.counter-block .counter .number {
	padding: 1%;
	width: 48%;
	height: 98%;
	background-color: #333;
	color: #FFF;
	position: absolute;
  	font-size: 30px;
	line-height: 27px;
	top: -10000px;
	text-align: center;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.counter-block .counter .number.tens {
	left: 0;
}
.counter-block .counter .number.units {
	left: 50%;
}
.counter-block .counter .number.hundreds {
	display: none;
}
.counter-block .counter .number.show {
	top: 0;
	z-index: 2;
}
.counter-block .counter .number.hidden-down {
	top: 100%;
}
.counter-block .counter .number.hidden-up {
	top: -100%;
	z-index: 100;
}
.counter-block .counter.with-hundreds {
	width: 78px;
}
.counter-block .counter.with-hundreds .number {
	width: 30.66%;
}
.counter-block .counter.with-hundreds .number.tens {
	left: 33.33%;
}
.counter-block .counter.with-hundreds .number.units {
	left: 66.66%;
}
.counter-block .counter.with-hundreds .number.hundreds {
	display: block;
	left: 0;
}
.counter-block .counter-caption {
	font-size: 12px;
	text-align: center;
}