/*
 * (Do not play around with positioning, with the exception of margin-right
 * in the countdown-bar class.  Attributes in first block of each class
 * can be adjusted by the user.)
 */

.countdown-clock {
	height: 30px;			
	width: 90px;
	font-size: 180%;
	border: 2px solid black;
	border-radius: 5px;
	text-align: center;
	vertical-align: middle;
	background-color: #FFFFFF;

	position: relative;
	float: left;
	top: 0;
	left: 0;
	z-index: 2;
	line-height: 1.1em;
}

.countdown-bar {
	height: 15px;
	border: 2px solid black;
	border-radius: 0 12px 12px 0;
	background-color: #FFFFFF;
	margin-right: 89px;

	position: relative;
	top: 7px;
	left: 89px;
	z-index: 1;
	box-sizing: content-box;
}

.countdown-progress {
	border-radius: 0 11px 11px 0;

	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	box-sizing: content-box;
	border-collapse: separate;
}

.countdown-progress-active {
	background-color: #7DAF27;
}

.countdown-progress-waiting {
	background-color: #ffffaa;
}
