.sClock {
    float: left;
    margin-right: 2px;
    position: relative;
}
.sClockContainer {
    margin: 0 auto;
    position: relative;
}
.clockFace {
    margin-left: 0px;
}
.sClockArrow {
    position:absolute;
    left: 0px;
}
.seconds, .minutes, .hours {
    display: block;
    position: absolute;
}
.sClock .digital {
    font-size: 14px;
    color: #444444;
    text-align: center;
}
.sClock .date {
    font-size: 14px;
    color: #444444;
    text-align: center;
}
.sClock .label {
	padding: 10px 1.5em;
	color: rgba(0,0,0, .8);
	text-shadow: 0 1px 0 #DDD;
	line-height: 1.5;
	position: relative;
	margin: 10px auto;
	
	border:1px solid #d8d8d8;
  	border-radius: 3px;
	background: #f5f5f5;
	background: -moz-linear-gradient(top,  #f5f5f5 0%, #efefef 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f5f5f5 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f5f5f5 0%,#efefef 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f5f5f5 0%,#efefef 100%); /* IE10+ */
	background: linear-gradient(top,  #f5f5f5 0%,#efefef 100%); /* W3C */
	-pie-background: linear-gradient(top, #f5f5f5 0%,#efefef 100%);
	box-shadow: 0px 0px 1px 1px #fcfcfc inset;
	text-align: center;
}
.sClock .label:before, .label:after {
	z-index: -1;
	position: absolute;
	content: "";
	bottom: 11px;
	left: 10px;
	width: 70%;
	top: 68%;
	max-width: 300px;
	background: rgba(0, 0, 0, 0.0);
	box-shadow: 0 10px 7px rgba(0, 0, 0, 0.7);
	transform: rotate(-3deg);
}
.sClock .label:after {
	transform: rotate(3deg);
	right: 10px;
	left: auto;
}