.stream-chart {
	width: 100%;
	height:300px;
	overflow: hidden;
}

.axis path,
.axis line {
  fill: none;
  stroke: #aaa;
  shape-rendering: crispEdges;
}

.axis text {
	fill: #888;
}

.x.axis path {
  display: none;
}

.line {
  fill: none;
  stroke: steelblue;
  stroke-width: 2px;
	stroke-linejoin: round;
}

.overlay {
	fill: transparent;
}

.dot {
	fill: steelblue;
	stroke: white;
	stroke-width: 1px;
}

.grid .tick {
	stroke: #ddd;
	opacity: 0.5;
	stroke-dasharray: 3, 1;
}
.grid path {
	stroke-width: 0;
}