
body {
	background: none transparent;
	text-align: center;
	margin: 0px;
}

a {
	color: pink;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

#countdown {
	font-family: "Courier New", monospace;
	width: 320px;
	height: 60px;
	padding: 5px 0px;
	background-color: rgba(31, 31, 34, 0.7);
	color: #B9BB57;
	margin: auto;
	border-radius: 0px;
	overflow: hidden;
	cursor: default;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
}

#progressbar {
	bottom: 0px;
	width: 100%;
	height: 0px;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.07);
	opacity: 0;
	-webkit-transition: height .5s ease, opacity 1s ease;
	-moz-transition: height .5s ease, opacity 1s ease;
	-ms-transition: height .5s ease, opacity 1s ease;
	-o-transition: height .5s ease, opacity 1s ease;
	transition: height .5s ease, opacity 1s ease;
}
#progressbar.active {
	height: 3px;
	opacity: 1;
}
#progressbar > div {
	height: 100%;
	background-color: #AA5;
}

#countdown #heading, #countdown #headingFinished {
	font-size: 20px;
	margin: 0px;
	padding: 0px;
	font-weight: bold;
	-webkit-transition: margin-top .2s ease;
	-moz-transition: margin-top .2s ease;
	-ms-transition: margin-top .2s ease;
	-o-transition: margin-top .2s ease;
	transition: margin-top .2s ease;
}
#countdown #heading {
	color: #AA5;
}
#countdown #headingFinished {
	display: none;
	font-size: 36px;
	margin-top: 10px;
	height: 57px;
}
#countdown.finished #heading {
	display: none;
}
#countdown.finished #headingFinished {
	display: block;
}
#countdown.finished #counter {
	display: none;
}
#countdown.finished #progressbar {
	height: 0px;
}
#countdown:hover #heading, #countdown:hover #headingFinished {
	margin-top: -80px;
}
#countdown #counter {
	font-size: 32px;
	line-height: 24px;
	padding: 5px 0px;
	opacity: 0;
	-webkit-transition: opacity .5s ease;
	-moz-transition: opacity .5s ease;
	-o-transition: opacity .5s ease;
	-ms-transition: opacity .5s ease;
	transition: opacity .5s ease;
	font-weight: bold;
	color: #CC5;
}

#countdown #about {
	font-size: 22px;
	margin-top: 28px;
	font-weight: bold;
}

#iframecode {
	width: 215px;
	height: 100px;
	font-size: 12px;
}
