
@font-face {
	font-family: 'digital';
	src: url('Let's go Digital Regular.ttf');	
}

.watchcontainer {
	padding:10px;
	text-align: center;
}

.timer {
	padding: 5px;
	background-color:#888888;
	overflow: hidden;
	display: inline-block;
	border: 3px solid #cfcfcf;
	border-radius: 5px;
	position: relative;
	box-shadow: inset 0 -2px 10px 1px rgba(0, 0, 0, 0.75), 0 5px 20px -10px rgba(0, 0, 0, 1);
}

.watchcell {
	width: 0.60em;
	height: 20px;
	font-size: 20px;
	overflow: hidden;
	position: relative;
	float: left;
}

.numbers {
	width: 0.6em;
	line-height: 20px;
	font-family: digital, arial, verdana;
	text-align: center;
	color: #fff;	
	position: absolute;
	top: 0;
	left: 0;	
	text-shadow: 0 0 2px rgba(255, 255, 255, 1);
}

#timer_controls {
	margin-top: 1px;
	margin-bottom:14px;
}
#timer_controls label {
	cursor: pointer;
	padding: 5px 5px;
	background: #efefef;
	font-family: arial, verdana, tahoma;
	font-size: 11px;
	border-radius: 0 0 3px 3px;
}

input[name="controls"] {display: none;}

#stop:checked~.timer .numbers {
	animation-play-state: paused;
	-webkit-animation-play-state: paused;
}

#start:checked~.timer .numbers {
	animation-play-state: running;
	-webkit-animation-play-state: running;
}

#reset:checked~.timer .numbers {
	animation: none;
	-webkit-animation: none;
}

.moveten {
	animation: moveten 1s steps(10, end) infinite;
	-webkit-animation: moveten 1s steps(10, end) infinite;
	animation-play-state: paused;
	-webkit-animation-play-state: paused;
}
.movesix {
	animation: movesix 1s steps(6, end) infinite;
	-webkit-animation: movesix 1s steps(6, end) infinite;
	animation-play-state: paused;
	-webkit-animation-play-state: paused;
}

.second {
	animation-duration: 10s;
	-webkit-animation-duration: 10s;
}

.tensecond {
	animation-duration: 60s;
	-webkit-animation-duration: 60s;
}

.milisecond {
	animation-duration: 1s;
	
}

.tenmilisecond {
	animation-duration: 0.1s;
	-webkit-animation-duration: 0.1s;
}

.hundredmilisecond {
	animation-duration: 0.01s;
	-webkit-animation-duration: 0.01s;
}

.minute {
	animation-duration: 600s;
	-webkit-animation-duration: 600s;
}

.tenminute {
	animation-duration: 3600s;
	-webkit-animation-duration: 3600s;
}

.hour {
	animation-duration: 36000s;
	-webkit-animation-duration: 36000s;
}
.tenhour {
	animation-duration: 360000s;
	-webkit-animation-duration: 360000s;
}

@keyframes moveten {
	0% {top: 0;}
	100% {top: -200px;} 
}

@-webkit-keyframes moveten {
	0% {top: 0;}
	100% {top: -200px;} 
}

@keyframes movesix {
	0% {top: 0;}
	100% {top: -120px;} 
}

@-webkit-keyframes movesix {
	0% {top: 0;}
	100% {top: -120px;} 
}
