/*
 	BIG NUMBER CSS
 	
 	Styles for the "Big Number" widget that producers
 	can embed in the "Related" sidebar of articles. 
 	
 	Displays a key number and context for it. E.g.,
 	inches of snowfall in Boston this year, or 
 	number of days the governor has been out of the state.
 	
 	Boston.com
 	Feb. 16, 2011
 	
 */


/* The outer container */

.bigNumberBox {
	border-top: 4px solid #dddddd;
}

/* Small, bold header at the top */

.bigNumberHeader {
	font-size: 11px;
	line-height: 14px;
	font-weight: bold;
	font-family: Helvetica;
	text-transform: uppercase;
	margin: 6px 0 3px 0;
	padding: 0;
}

/* Context and status of the number */

.bigNumberContext, .bigNumberStatus {
	font-size: 11px;
	line-height: 14px;
	font-family: Helvetica;
	color: #464646;
	margin: 0;
}

/* Unit the number is measured in */

.bigNumberUnit {
	font-size: 10px;
	line-height: 14px;
	font-family: Helvetica;
	margin: 5px 0 0 0;
	padding: 0 0 3px 0;
	border-bottom: 1px solid #dddddd;
}

/* The number itself */

.bigNumber {
	font-size: 45px;
	font-family: Helvetica;
	font-weight: bold;
	color: #ee8822;
	line-height: 45px;
	margin: 0 0 8px 0;
}

/* The little label before the status */

.bigNumberStatusLabel {
	text-transform: uppercase;
	font-weight: bold;
	color: #666;
}