/**
 *	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: auto;
    display: inline-block;
/*    height: 100%;*/
	background-color:#fff;
/*    text-align: center;*/
/*    display: none*/
}

/**
 *	This is all the elements used to house all text used
 * in time circles
 **/
.time_circles > div {
    position: absolute;
    text-align: center;
    height: 100px !important;
    color: #fff;
/*    border-color:#333 !important;*/
/*    background: blue;*/
    margin: auto
}

/**
 *	Titles (Days, Hours, etc)
 **/
.time_circles > div > h4 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px !important;
    font-family: "Orbitron";
   /* text-shadow: none;*/
/*   text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);*/
    color: #888 !important;
    
}

/**
 *	Time numbers, ie: 12
 **/
.time_circles > div > span {
    display: block;
    width: 100%;
    text-align: center;
     font-family: "Orbitron";
     color: #fff !important;
    font-size: 16pt !important;
    background: #333;
    margin:0;
/*    border: 1px solid #444;*/
	 
/*   text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);*/
   /*  margin-top: .4em !important;*/
   /* text-shadow: none;*/
    font-weight: 700;
}
