html, body {
	margin:0;
	padding:0;
}

#timer-box {
	width: 325px; height: 175px;
	display: block;
	float: right;
	background: #F89D20;
	padding: 5px;
	margin-right: 18px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

#countdown {
	margin:0 auto;
	width:340px;
}

.countdown-image {
	
	margin-left: 10px;
}

a img {
	border: none;
}

/* timer general */
#timer {
	position:relative;
}


*:first-child+html hr {
	top:370px;
}


/* timer numbers */
.timer_numbers {
	font-size:25px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align:left;
	color:#ffffff;
}

#timer_days {
	background:url(../images/countdown1.png) transparent no-repeat;
	float:left;
	width:76px;
	height:50px;
	padding:10px 0 0 10px;
	letter-spacing:22px;
}

#timer_hours {
	background:url(../images/countdown1.png) transparent no-repeat;
	float:left;
	width:76px;
	height:50px;
	padding:10px 0 0 10px;
	letter-spacing:22px;
}

#timer_mins {
	background:url(../images/countdown1.png) transparent no-repeat;
	float:left;
	width:76px;
	height:50px;
	padding:10px 0 0 10px;
	letter-spacing:22px;
}

#timer_seconds {
	background:url(../images/countdown2.png) transparent no-repeat;
	float:left;
	width:68px;
	height:50px;
	padding:10px 0 0 10px;
	letter-spacing:22px;
}

/* timer labels */
.timer_labels {
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align:center;
	color:#954518;
}

#timer_labels {
	position:relative;
}

#timer_days_label {
	position:absolute;
	top:50px;
	left:18px;	
}

#timer_hours_label {
	position:absolute;
	top:50px;
	left:106px;
	
}

#timer_mins_label {
	position:absolute;
	top:50px;
	left:193px;	
}

#timer_seconds_label {
	position:absolute;
	top:50px;
	left:279px;
}