/* =============================================================================================
 * Odometer Counter
 * 
 * Author: s.clark
 * Copyright: (c) 2013 by S.Clark
 * Created: July 2013
 * Tested on: FireFox, IE9, Opera, Chrome browsers
 */



.digitParentDiv{
	height: 80px;	/* MUST be taller than Container Div */
	/* width: 250px; */
	padding-top: 8px;
	padding-left: 5px;
	background: white;
}

/* Settings for Odometer container which contains digit Boxes */
.digitContainerDiv{
	float: left; 
	border:2px; 
/*	border-style: solid; */
	border-radius: 5px; 	
	padding-top: 0px; 
	padding-left: 0px; 
	padding-right: 7px; 
	/* height must be computed with Container's height + Box's top-margin for centering Box. 
	      (e.g. ContainerHeight - topMargin = Box's height ) */
	height: 45px; 
	width: auto;
}

/* Settings for digit Boxes */
.digitBox{
	background: #FFCC66;	
	height: 38px;	/* See Container's height comments */
	width: 30px;
	overflow-y:hidden;
	float: left;
	padding-top: 0px;	/* Must be set to zero to control centering of this Box */
	margin-top: 3px;	/* See Container's height comments */
}


/* settings for odometer text */
.digitText{
	font-size: 2em; 
	padding-left: 0px; 
	padding-top: 0px; 
	text-align: center; 
	overflow:hidden; 
	position: relative;  
	text-overflow: clip;
	line-height: 38px;
}

/* Background color for Parent Div and decimal/comma's text */
.bg1{
	background-color: #7070DB;
}
