@charset "utf-8";
/* CSS Document */

	
	#clockLabel {
		position: relative;
		margin-top: 30px;
		margin-bottom: 5px;
		font-size: 20px;
	}
	
	#secondsOutput {
		font-size: 18px;
	}

	.point {
		position: relative;
		-moz-animation: mymove 1s ease infinite;
		-webkit-animation: mymove 1s ease infinite;
		font-size: 30px;
	}
	
	.secsColon {
		font-size: 24px;
	}

	@-webkit-keyframes mymove {
		0% { opacity:1.0; text-shadow:0 0 20px #00c6ff; }
		50% { opacity:0; text-shadow:none; }
		100% { opacity:1.0; text-shadow:0 0 20px #00c6ff; } 
	}

	@-moz-keyframes mymove {
		0% { opacity:1.0; text-shadow:0 0 20px #00c6ff; }
		50% { opacity:0; text-shadow:none; }
		100% { opacity:1.0; text-shadow:0 0 20px #00c6ff; } 
	}
	
	#radioButtonHolder {
		position: relative;
		margin: 10px auto;
		width: 240px;
		height: 10px;
		top: -10px;
	}
	
	.clockRadios {
		margin-left: 20px;
	}
	
	.lblClockModeRadio {
		font-size: 14px;
		margin-left: 5px;
		margin-right: 5px;
	}
	
	#theClockRow {
		height: 50px;
		margin-bottom: 0;
		padding-bottom: 0;
	}
	
	
	
