#content{
    line-height:40px;
}
h2{
    font-size:25px;
}
#clock{
    background:#eee;
    width:300px;
    height:300px;
    position:relative;
    -moz-border-radius:200px;
    -webkit-border-radius:150px;
    border-radius:150px;
}
#tvelve,#three,#six,#nine{
    position:absolute;
    width:30px;
    height:30px;
    text-align:center;
    font-family:"Tahoma";
    font-size:25px;
    color:#999;
    line-height:25px;
}
#tvelve{
    top:0; left:50%;
    margin-left:-15px;
}
#six{
    bottom:0; left:50%;
    margin-left:-15px;
}
#three{
    top:50%;right:0;
    margin-top:-15px;
}
#nine{
    top:50%;left:0;
    margin-top:-15px;
}
#hour_container,#min_container,#sec_container{
    width:100%;
    height:100%;
    position:absolute;
}
#hour_arr{
    height:150px;
    width:6px;
    position:absolute;
    left:144px;
    top:75px;
}
#hour_fill{
    width:100%;
    height:50%;
    background:#000;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    -webkit-box-shadow: 0px 0px 2px #000;
    -moz-box-shadow: 0px 0px 2px #000;
    box-shadow: 0px 0px 2px #000;
}
#min_arr{
    height:280px;
    width:0px;
    position:absolute;
    left:145px;
    top:10px;
}

#min_fill{
    width:100%;
    height:50%;
    background:#666;
    border:3px solid #666;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    -webkit-box-shadow: 0px 0px 2px #000;
    box-shadow: 0px 0px 2px #000;
}

#sec_arr{
    height:280px;
    width:0px;
    position:absolute;
    left:145px;
    top:10px;
}

#sec_fill{
    width:100%;
    height:50%;
    background:#f00;
    border:2px solid #f00;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    -webkit-box-shadow: 0px 0px 2px #000;
    -moz-box-shadow: 0px 0px 2px #000;
    box-shadow: 0px 0px 2px #000;
}


#sec_arr{
  -webkit-animation-name: tick;
  -webkit-animation-duration: 60s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}
#min_arr{
  -webkit-animation-name: tick;
  -webkit-animation-duration: 3600s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}
#hour_arr{
  -webkit-animation-name: tick;
  -webkit-animation-duration: 43200s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes tick{
    0%{
        -webkit-transform : rotate(0deg)
    }
    100%{
        -webkit-transform : rotate(360deg);
    }
}

#circle{
    -moz-border-radius:15px;
    -webkit-border-radius:15px;
    border-radius:15px;
    -moz-box-shadow:0 0 5px #000;
    -webkit-box-shadow:0 0 5px #000;
    box-shadow:0 0 5px #000;
    width:25px;
    height:25px;
    background:#000;
    position:absolute;
    left:50%;top:50%;
    margin:-12px 0 0 -16px;
    z-index:50;
}


