/* Css for SVG graphs */
rect:hover {
  fill: #92000a;
}
.axis path, .axis line {
  fill: none;
  stroke: #d1d0cf;
  shape-rendering: crispEdges;
}
.axis text {
  font-family: helvetica;
  font-size: 9px;
  fill: #898989;
}
.grid .tick {
  stroke: lightgrey;
  stroke-opacity: 0.7;
  shape-rendering: crispEdges;
}
.grid path {
  stroke-width: 0;
}
.area {
  fill: rgb(178, 178, 178);
}
