@charset "utf-8";
.plugin-myclock {
	position: relative;
	width: 100%;
	margin: 0 0 20px 0;
}
.clock {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	box-shadow: 0px 3px 10px rgba(0,0,0,0.5), 0 -10px 60px rgba(0,0,0,0.2) inset;
	position: absolute;
	background: #fff;
	left: 50%;
	top: 50%;
	margin: -150px 0 0 -150px;
}
.plugin-myclock>.clock {-webkit-transform: scale(0.5);}
.clock:before {
	content: "";
}
.clock:after {
	content: "";
	background: #333;
	width: 260px;
	height: 260px;
	margin: 20px;
	box-shadow: 0px 3px 15px rgba(0,0,0,0.5) inset;
	border-radius: 50%;
	position: absolute;
}
.clock .clock-hand {
	position: absolute;
	border-radius: 5px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
	z-index: 999;
}
.clock .minute-hand {
	width: 8px;
	height: 110px;
	background: #fff;
	left: 50%;
	top: 40px;
	transform-origin: 50% 100%;
	-webkit-transform-origin: 50% 100%;
	-moz-transform-origin: 50% 100%;
	-o-transform-origin: 50% 100%;
	animation: min_rotate 3600s infinite linear;
	-webkit-animation: min_rotate 3600s infinite linear;
	-moz-animation: min_rotate 3600s infinite linear;
	-o-animation: min_rotate 3600s infinite linear;
	margin: 0 0 0 -4px;
}
.clock .hour-hand {
	width: 10px;
	height: 80px;
	left: 50%;
	top: 70px;
	background: #fff;
	margin: 0 0 0 -5px;
	animation: hour_rotate 43200s infinite linear;
	-webkit-animation: hour_rotate 43200s infinite linear;
	-moz-animation: hour_rotate 43200s infinite linear;
	-o-animation: hour_rotate 43200s infinite linear;
	transform-origin: 50% 100%;
	-webkit-transform-origin: 50% 100%;
	-moz-transform-origin: 50% 100%;
	-o-transform-origin: 50% 100%;
}
.clock .second-hand {
	width: 6px;
	background: #F00;
	height: 130px;
	left: 50%;
	top: 40px;
	margin: 0 0 0 -3px;
	transform-origin: 50% 110px;
	-webkit-transform-origin: 50% 110px;
	-moz-transform-origin: 50% 110px;
	-o-transform-origin: 50% 110px;
	animation: sec_rotate 60s infinite linear;
	-webkit-animation: sec_rotate 60s infinite linear;
	-moz-animation: sec_rotate 60s infinite linear;
	-o-animation: sec_rotate 60s infinite linear;
}
.clock .pivot {
	width: 16px;
	height: 16px;
	background: #999;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -8px 0 0 -8px;
	background: url(pivot.png);
	background-size: 100%;
	z-index: 9999;
}
.clock .digit{
	position: absolute;
	left:140px;
	top:140px;
	text-align:center;
	white-space:pre;
	font:20px Arial, Helvetica, sans-serif;
	line-height:20px;
	z-index: 998;
	color: #fff;
	width:20px;
	height:20px;
}