#header {
    position: fixed;
    height: 305px;
    background-color: #ffffff;
    opacity: 1.0;    
    top:0;
    left:0;
    right:0px;
    z-index: 5;
}

/* tell the SVG path to be a thin blue line without any area fill */
.body {
  text-align: left;
  background-color:#ffffff;
  padding: 0px 50px 0px 50px;
  margin:0;
  z-index: 5;
}

#body_main {
  margin-top: 325px; 
  overflow: hidden;
}

path {
  stroke: steelblue;
  stroke-width: 1;
  fill: none;
}

.axis {
  shape-rendering: crispEdges;
}

.x.axis line {
  stroke: lightgrey;
}

.x.axis .minor {
  stroke-opacity: .5;
}

.x.axis path {
  display: none;
}

.y.axis line, .y.axis path {
  fill: none;
  stroke: #000;
}

.ui-slider-range { background: rgb(96,96,96); }

/* Popup container */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    z-index: 10;
}

/* The actual popup (appears on top) */
.popup .popuptext {
    visibility: hidden;
    width: 500px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 0%;
    left: 50%;
    margin-left: 20px;
    margin-bottom: -50%;
}

/* Popup arrow */
.popup .popuptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 100%; /* To the left of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #555 transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 2s;
    animation: fadeIn 2s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.print {
  display: none;
}
.noprint{
  display: block;
}

@media print {
    #header {
        position: relative;
        height: 165px;
    }
    .noPrint {
        display: none;
        /*Modifications to elements that we don't want to print in a report*/
    }
    .print {
        display: block;
    }
    #body_main {
        margin-top: 0px;
    }
    
}