/**
 *	This element is created inside your target element
 *	It is used so that your own element will not need to be altered
 **/
.time_circles {
    position: relative;
    width: 100%;
    height: 100%;
}

/**
 *	This is all the elements used to house all text used
 * in time circles
 **/
.time_circles > div {
    position: absolute;
    text-align: center;
}

/**
 *	Titles (Days, Hours, etc)
 **/
.time_circles > div > h4 {
    margin: -2px 0px 0px;
    padding: 0px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight:400;
    letter-spacing: 1px;
    color: #999999;
}

/**
 *	Time numbers, ie: 12
 **/
.time_circles > div > span {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 300%;
    font-weight: 400;
    margin-top: 13px;
    color: #333333;
}



.countdown_timer {
    margin:20px auto 10px;
    padding:5px 0;
    background: #ffffff;
	-moz-box-shadow:    inset 0 0 10px #cccccc;
	-webkit-box-shadow: inset 0 0 10px #cccccc;
	box-shadow:         inset 0 0 10px #cccccc;
}

.countdown_title {
    margin:24px 4% 15px 14%;
    padding:0 5% 0 0;
    width:20%;
	font-family:'Oswald', sans-serif;
	font-weight:400;
	font-size:41px;
	text-align:left;
    line-height: 44px;
	text-transform:uppercase;
    border-right: 1px #cccccc dotted;
    float: left;
}

.countdown_title span {
	font-family:'Oswald', sans-serif;
	font-weight:300;
	font-size:24px;
	text-align:left;
    line-height: 28px;
	text-transform:uppercase;
}

#DateCountdown {
    margin:5px auto 2px;
    padding:0;
    width:40%;
    box-sizing:border-box;
    float:left;
}