body {
	background:#fbfbf9;
}

h3.column-chart-d3-title{
	font-family:mako, sans-serif;
	font-size:16pt;
	font-weight:normal;
	color:#333;
	text-rendering:crisp;
}

.axis {
  font-family: 'Source Sans Pro','Mako',sans-serif;
}
.axis path,.axis line {
	fill: none;
	stroke: black;
	stroke-width:0;
	shape-rendering: crispEdges;
}

.axis text {
	shape-rendering: crispEdges;
	fill:#333;
	text-anchor:end;
	text-align:right;
    font-size: 13pt;
}

.y.axis  text {
	fill:#333;
 	 font-size: 13pt;
 	 font-weight:600;
}

.x .axis ticks {
	fill: none;
	stroke: #ccc;
	stroke-width:1;
	shape-rendering: crispEdges;
	
}

.svgFade40 {
	opacity:0.6;
}
.svgHighlight {
	stroke-width:1;
}

/* tooltip */
#tooltip-chart {
	pointer-events:none;
	display:block;
	position:absolute;
	padding:5px;
	border-radius:3px;
	/* background:beige; */
	color:white;
	background:#333;
	border: 0.5px solid #ccc;
	z-index:15000;
	font-size:11pt;
	text-align:center;
	font-family:'Source Sans Pro','Mako',sans-serif;
	

}

#labels text {
	font-size:11pt;
	font-family:'Source Sans Pro','Mako',sans-serif;
	pointer-events:none;
	/* fill:#333; */
	font-weight:400;
}	

.hidden {
	display:none !important;
}

.bar {
	fill:#609280;
}
.bar:hover {
	fill: #ffcc00;
}

/*http://www.d3noob.org/2013/01/adding-grid-lines-to-d3js-graph.html */

.grid .tick {
    stroke: lightgrey;
    opacity: 0.7;
}
.grid path {
      stroke-width: 0;
}