div.bar {
    display: inline-block;
    width: 20px;
    height: 75px;/* Gets overriden by D3-assigned height below */
    margin-right: 2px;
    background-color: teal;
}
.bar{
    top : 30px
    overflow:scroll;
}

div.bob{
    overflow:scroll;
}
.bar.positive {
    fill: steelblue;
}

.bar.negative {
    fill: brown;
}

body {
    font: 10px sans-serif;
}
.plot {
    fill: rgba(250, 250, 255, 0.6);
}
.grid .tick {
    stroke: lightgrey;
    opacity: 0.7;
}
.grid path {
    stroke-width: 0;
}
.axis path, .axis line {
    fill: none;
    stroke: #000;
    shape-rendering: crispEdges;
}
.x.axis path {
    display: none;
}
.darkLine{
    fill: #000;
    stroke: #9E9797;
    stroke-width: 2px;
}
.line {
    fill: none;
    stroke: steelblue;
    stroke-width: 1.5px;
}
.y.axis{
    stroke: #000;
    stroke-width:1px;
}
.x.axis{
    stroke: #000;
    stroke-width:1px;
}
