
.clock_container {
	display: inline-block;
	width: 200px;
	height: 200px;
	margin: 10px;
}




.clock {
	width: 100%;
	height: 100%;
	background: #212;
	border-radius: 50%;
	position: relative;
	margin: 20px;
}
.dot {
	width: 8px;
	height: 8px;
	background: #000;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	z-index: 12;
}
.sec {
	width: 1px;
	height: 80px;
	background: #999;
	position: absolute;
	right: 0;
	left: 0;
	top: 20px;
	margin: auto;
	-webkit-transform-origin: center bottom;
	-webkit-transform: rotate(0deg);
	z-index: 10;
}
.sec:before {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 10px;
	color: #999;
	display: block;
	width: 100px;
	left: -56px;
	top: 10px;
	position: absolute;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.min {
	width: 1px;
	height: 75px;
	background: black;
	position: absolute;
	right: 0;
	left: 0;
	top: 25px;
	margin: auto;
	-webkit-transform-origin: center bottom;
	-webkit-transform: rotate(0deg);
	z-index: 8;
}
.hour {
	width: 1px;
	height: 50px;
	background: black;
	position: absolute;
	right: 0;
	left: 0;
	top: 50px;
	margin: auto;
	-webkit-transform-origin: center bottom;
	-webkit-transform: rotate(0deg);
	z-index: 6;
}
