/* CSS Document */

/* Styles for the countdown button */
.countdown-button {
    display: inline-block;
	text-decoration: none;
    background: #555555;
    line-height: 22px;
    position: relative;
    margin: 0 10px 10px 0;
    color: #ffffff;
    border: 1px solid transparent;
    transition: background 1s ease 0s;
    -webkit-transition: background 1s ease 0s;
    -moz-transition: background 1s ease 0s;
    -o-transition: background 1s ease 0s;
	border-radius: 50px;
	padding: 22px 36px
}

.countdown-button:hover {
	background: #000000;
	text-decoration: none;
}

.countdown {
    font-weight: normal;
}

.download-link {
    display: none;
    color: #ffffff;
    text-decoration: none;
}

a:hover {
	text-decoration: none;
}