body{
    margin: 0;
}
#chart{
    border: 1px silver solid;
    position: absolute;
    top: 20px;
    left: 50px;
    width: 600px;
    height: 300px;
}
.domain{
    fill: none;
    stroke: white;
}
.axis-x .tick line{
    stroke: #eee;
    stroke-width: 2px;
}
.axis-x .tick text{
    fill: white;
    text-anchor: start !important;
}
.axis-y .tick text{
    fill: grey;
    text-shadow: 1px 0px 2px white, -1px 0px 2px white, 0px 1px 2px white, 0px -1px 2px white;
    stroke: grey;
}
path{
    stroke: black;
    fill: none;
}
.geometry-group path{
}
.extent{
    stroke: gray;
    fill: dodgerblue;
    fill-opacity: .365;
}
text{
    font-size: 12px;
}
canvas.geometry{
    position: absolute;
}
.axis-x-bg{
    fill: silver;
}
svg{
    position: relative; /*position property needed to get the svg on top of canvas*/
}
.interaction-info{
    /*width: 200px;*/
    z-index: 6;
    margin-left: 2px;
    position: absolute;
    padding: 5px;
    font-size: 11px;
    pointer-events: none;
    opacity: 0;
}
.tooltip-inner{
    padding: 3px 8px;
    color: #fff;
    text-decoration: none;
    background-color: #000;
    border-radius: 4px;
    text-align: left;
    font-size: 12px;
    line-height: 1.3;
    min-width: 0;
    max-width: none;
}
.tooltip.right .tooltip-arrow{
    left: 0;
    border-right: 5px solid #000000;
}
.tooltip.left .tooltip-arrow {
    right: 0;
    margin-left: -2px;
    border-left: 5px solid #000000;
}
.tooltip-arrow{
    top: 50%;
    position: absolute;
    width: 0;
    height: 0;
    margin-top: -5px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.tooltip-text{
    fill: white;
    font-size: 12px;
    font-family: arial;
}
.tooltip-text tspan:nth-child(2){
    fill: white;
    font-size: 10px;
    font-family: arial;
    font-weight: lighter;
}
#line-graph-info{
    border-radius: 5px;
    background: #fff;
    color: #222;
    font-size: 12px;
    position: absolute;
    top: 30px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
}
#line-graph-info .when {
    background-color: #999999;
    color: #fff;
    font-weight: bold;
    line-height: 20px;
    height: 20px;
    padding: 0 5px;
    white-space: nowrap;
}
#line-graph-info table {
    display: block;
    margin: 0;
    table-layout: fixed;
}
#line-graph-info table td .pp-color {
    border-radius: 5px;
    display: inline-block;
    height: 10px;
    margin: 5px 5px 5px 0;
    width: 10px;
}
#line-graph-info table td {
    border-top: 0;
    border-bottom: #ddd solid 1px;
    font-size: 11px;
    line-height: 20px;
    height: 20px;
    min-width: 50px;
    text-align: left;
    padding: 0 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#line-graph-info table td.name {
    width: 50px;
}
#line-graph-info table td span {
    vertical-align: middle;
    line-height: 20px;
}
#line-graph-info table tr:nth-child(even) {
    background-color: #f7f7f7;
}