/**
 *	This element is created inside your target element
 *	It is used so that your own element will not need to be altered
 **/
.time_circles {
    
    width: 100%;
    display: table;
}

/**
 *	This is all the elements used to house all text used
 * in time circles
 **/
.time_circles > div {
/*    position: relative;
*/    text-align: center;
    display: table-cell;
    vertical-align: middle;
}


/**
 *	Titles (Days, Hours, etc)
 **/
.time_circles > div > h4 {
  display: block;
  font-size: 17px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #262626;
	line-height: 10px;
	text-align: center;
  margin-top: 5px;
}

/**
 *	Time numbers, ie: 12
 **/
.time_circles > div > span {
  color: #666666;
	font-size: 40px;
	text-align: center;
}
