/* -------------------------------------------------------

	Description: Analog jQuery Clock
	Version: 1.0
	Author: Anli Zaimi
	Author URI: http://azmind.com

------------------------------------------------------- */


body {
	margin: 0;
	padding: 0;
	text-align: center;
	background: #eee url(images/bg.jpg) top left repeat;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
}

#container {
	width: 150px;
	height: 150px;
	margin: 20px auto 27px auto;
	position: relative;
	top: 0px;
	left: 0px;
}

.rotatingHands {
	position: absolute;
	width: 150px;
	height: 150px;
	top: 0px;
	left: 0px;
}

#hours, #minutes, #seconds {
	position: absolute;
	display: block;
}

.glass {
	position: absolute;
	width: 150px;
	height: 150px;
	top: 0px;
	left: 0px;
}



#footer {
	width: 800px;
	margin: 0 auto;
	font-size: 14px;
	color: #aaa;
	text-shadow: 1px 2px 0 #fff;
}

#footer a { color: #888; text-decoration: none; border-bottom: 1px dashed #aaa; }
#footer a:hover { color: #888; text-decoration: none; border: 0; }


