/*for new members graphic on homepage*/

#gauge-wrapper {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	width: 90%;
	margin: 3em 5%;
}

#gauge-wrapper h2, #gauge-wrapper h3 {
	text-align: center;
}

#gauge-background {
	width: 100%;
	height: 2.5em;
	background-color: #c7c7c7;
	border-radius: 0.75em;
	overflow: hidden; /*clips corners of filled bar*/
}

#gauge-filled {
	width: 100%;
	height: 2.5em;
	background-color: #ff5d50;
	line-height: 2.5em; /*for javascript warning*/
	text-align: center;
}

#gauge-stats {
	list-style-type: none;
	font-weight: bold;
}

.data-color {
	color: #ff5d50;
}



/*single-line stats - style copied from menu bar*/

#gauge-stats {
	width: 100%;
	margin: 0;
	padding-left: 0;
	font-weight: bold;
	font-size: 0; /*hack to eliminate linebreaks rendering as whitespace - cannot use em to set child element's font*/
}

#gauge-stats li {
	display: inline-block;
	margin: 0.25em 0;
	position: relative;
	width: 33%; /*three stats so one-third width*/
	font-size: 1rem;
	text-align: center;
}



@media (max-width: 700px) { /*WARNING: must change this cutoff separately if global stylesheet media query is adjusted*/
	#gauge-stats li {
		display: block;
		width: 100%;
	}
}