/**
 *  Bandline styling
 */

body {
    background-color: white;
}

g.bands .band {stroke-width: 1px;}

g.bandline,
g.sparkStrip {
    fill: none;
}

g.sparkStrip .valuePoints,
g.bandline .valuePoints .point.highOutlier {
    fill-opacity: 0
}

g.bandline .valuePoints .point {
    fill-opacity: 0.5;
}

g.bandline .valueLine {
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}

g.sparkStrip .valueBox,
g.sparkStrip .valuePoints {
    stroke-width: 0.5;
}

g.sparkStrip .valuePoints {
    stroke-opacity: 0.5;
}

g.bandline .valuePoints .point.lowOutlier {
    fill-opacity: 1;
}

g.bandline .valuePoints .point.highOutlier {
    fill: white;
    fill-opacity: 1;
}

g.sparkStrip .valueBox {
    fill: white;
    fill-opacity: 0.75;
 }