.clock{
	/* The .clock div. Created dynamically by jQuery */
	height:60px;
	width:60px;
	position:relative;
	overflow:hidden;
	float:left;
	color:#000;
}

.clock .rotate{
	/* There are two .rotate divs - one for each half of the background */
	position:absolute;
	width:60px;
	height:60px;
	top:0;
	left:0;
	color:#000;
}

.rotate.right{
	display:none;
	z-index:11;
}

.clock .bg, .clock .front{
	width:30px;
	height:60px;
	position:absolute;
	top:0;
}

.clock .display{
	/* Holds the number of seconds, minutes or hours respectfully */
	position:absolute;
	width:60px;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	z-index:20;
	color:#000000;
	font-size:20px;
	text-align:center;
	top:20px;
	left:0;
	
	/* CSS3 text shadow: */
}

/* The left part of the background: */

.clock .bg.left{ left:0; }

/* Individual styles for each color: */
.orange .bg.left{ background:url(img/bg_orange1.png) no-repeat left top; }
.green .bg.left{ background:url(img/bg_green1.png) no-repeat left top; }
.blue .bg.left{	background:url(img/bg_blue1.png) no-repeat left top; }

/* The right part of the background: */
.clock .bg.right{ left:30px; }

.orange .bg.right{ background:url(img/bg_orang1e.png) no-repeat right top; }
.green .bg.right{ background:url(img/bg_green1.png) no-repeat right top; }
.blue .bg.right{ background:url(img/bg_blue1.png) no-repeat right top; }


.clock .front.left{
	left:0;
	z-index:10;
}
