* {
	margin: 0;
	padding: 0;
}

body {
	background-image: url(../images/bg-three.jpg);
	background-repeat: repeat;
}

#clock {
	position: relative;
	width: 600px;
	height: 600px;
	margin: 20px auto 0 auto;
	list-style: none;
	background: transparent url(../images/_0000_clockface.png) no-repeat;
}

#sec, #min, #hour, #overlay {
	position: absolute;
	width: 600px;
	height: 600px;
	top: 0px;
	left: 0px;
	background-repeat: no-repeat;
	}
	
#overlay {
	z-index: 4;
	background: transparent url(../images/_0004_overlay.png) no-repeat;
}
		

#sec {
	z-index: 3;
	background: transparent url(../images/_0003_secondhand.png) no-repeat;
}
   
#min {
	z-index: 2;
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background: transparent url(../images/_0002_minutehand.png) no-repeat;
}
   
#hour {
	z-index: 1;
	background: transparent url(../images/_0001_hourhand.png) no-repeat;
}
       
