/*******************************************************************************
   aqi.css
   
   Standard CSS include stylesheet for AQI
*******************************************************************************/

.aqibox {
	position: relative;
	font: 13px Arial, sans-serif;
	display: block;
	width: 50px; 
	padding: 1px; 
	margin: 2px; 
	text-align: center; 
}

.aqiwidebox {
	position: relative;
	font: 13px Arial, sans-serif;
	display: block;
	padding: 1px; 
	margin: 2px; 
	text-align: center; 
}

.aqibox small {
	position: absolute;
	right: 1px;
	top: 1px;
	font: 7px Arial, sans-serif;
}

.aqi_Good, .aqi_cat1, .aqi_Green {
	color: black;
	background-color: #00E400;
}

.aqi_Mod, .aqi_cat2, .aqi_Yellow {
	color: black; 
	background-color: #FFFF00;
}

.aqi_USG, .aqi_cat3, .aqi_Orange {
	color: black; 
	background-color: #FF7E00;
}

.aqi_Unh, .aqi_cat4, .aqi_Red {
	color: white; 
	background-color: #FF0000;
}

.aqi_VUh, .aqi_cat5, .aqi_Purple {
	color: white; 
	background-color: #99004C;
}

.aqi_Haz, .aqi_cat6, .aqi_Maroon {
	color: white; 
	background-color: #7e0023;
}

.aqi_fg_cat1 { color: #00E400; }
.aqi_fg_cat2 { color: #FFFF00; }
.aqi_fg_cat3 { color: #FF7E00; }
.aqi_fg_cat4 { color: #FF0000; }
.aqi_fg_cat5 { color: #99004C; }
.aqi_fg_cat6 { color: #7e0023; }

