* {
    margin: 0;
    padding: 0;
}

#clock {
    position: relative;
    width: 148px;
    height: 148px;
    margin: 2px auto 0 auto;
    background: url(/static/images/widgets/clock-face.png);
    list-style: none;
    }

#sec, #min, #hour {
    position: absolute;
    width: 7px;
    height: 148px;
    top: 0px;
    left: 71px;
    }

#sec {
    background: url(/static/images/widgets/clock-sec-hand.png);
    z-index: 3;
    }
   
#min {
    background: url(/static/images/widgets/clock-min-hand.png);
    z-index: 2;
    }
   
#hour {
    background: url(/static/images/widgets/clock-hour-hand.png);
    z-index: 1;
    }
