.chartContainer {
	float: left;
	width: 100%;
	position: relative;
	height: 700px;
}
.rowItem {
	position: absolute;
	width: 100%;
	left: 0;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}
.bar {
	float: left;
	position: relative;
	width: 90%;
	padding-left: 150px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.barNoFill {
	position: absolute;
	left: 150px;
	top: 0px;
	z-index: -1;
	height: 100%;
	width: 100%;
	background: #dedede;
}
.barFill {
	float: left;
	height: 17px;
	background: #C94F57;
	position: relative;
}
.barNum {
	position: absolute;
	right: -50px;
	top:-2px;
	color: #999;
	font-weight: 100;
}
.rowLabel {
	position: absolute;
	left: 10px;
	top: 2px;
	font-size: 10px;
	text-align: right;
	width: 130px;
	text-transform: uppercase;
}
.catLabel {
	position: absolute;
	left: 0;
	top: -25px;
	width: 100%;
	text-align: center;
	font-weight: 100;
	font-size: 16px;
	border-bottom: 1px solid #ddd;
}
