.barchart {
	width: 100%;
	display: block;
	margin: auto;
	text-align: center;
	position: relative;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.barchart table {
	width: 96%;
}
.barchart table td {
	border-right: 1px solid transparent;
	position: relative;
	padding-bottom: 1.5em;
}
.barchart table td:hover {
	cursor: pointer;
}
.barchart table .bar {
	display: block;
	width: 100%;
	background-color: #FF6700;
	border-bottom: 1px solid rgb(151, 151, 151);
	cursor: pointer;
	position: relative;
	vertical-align: baseline;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.barchart table td:hover .bar,.barchart table td .bar:focus { background: #FF7F29; }
.barchart table td:hover .antibar { background: rgba(0,0,0,0.1); }
.barchart table td.deselected:hover .bar, .barchart table td.deselected .bar:focus { background: #5b5b5b; }
.barchart table td.deselected .bar {
	background-color: #333333;
}
.barchart .info-box {
	position: absolute;
	background: white;
	padding: 0.5em;
	border: 1px solid rgb(151, 151, 151);
	left: 1em;
	top: 1em;
	width: auto;
}
.barchart table .label {
	font-size: 0.8em;
	position: absolute;
	left: 0px;
	border-left: 1px solid rgb(151, 151, 151);
	padding-left: 0.25em;
	padding-top: 0.25em;
	line-height: 1em;
    color: rgb(241,241,241);
}
.barchart .grid {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}
.barchart:hover .grid .line {
	opacity: 1;
}
.barchart .grid .line {
	width: 100%;
	border-bottom: 1px solid rgb(151, 151, 151);
	color: rgb(151, 151, 151);
	opacity: 0.8;
	position: absolute;
	text-align: right;
}
.barchart:after {
	content: "";
	clear: both;
}
.barchart .balloon {
	position: absolute;
	background-color: white;
	padding: 0.25em 0.5em;
	left: 50%;
	top: 0;
	transform: translate3d(0%,-120%, 0);
	white-space: nowrap;
	margin-right: -50%;
	text-align: center;
	z-index: 100;
	box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}
.barchart .balloon::after {
	content: '';
	position: absolute;
	bottom: auto;
	width: 0;
	height: 0;
	border: 0.5em solid transparent;
	left: 0;
	border-left-color: white;
	bottom: -0.5em;
}