#header {
    position: fixed;
    top: 0px;
	height: 160px;
	margin-top: 0px;
	margin-bottom: 0px;
	left: 0px;
    right: 0px;
    opacity: 1.0;
    z-index: 5;
	background-color: #ffffff;
}

#body_main {
  top: 0px;
  margin-top: 30px;
  margin-bottom: 0px;
  overflow: hidden;
}

/*
input css
*/
.slidecontainer {
    display: inline;
}
#controller-wrap {
        height: 400px;
		width: 210px;
		float: left;
		position: relative;
		box-shadow: none;
		border: none;
		margin: 0;
		padding: 0;
}
#controller {
    width: 300px;
    height: 550px;
    /*padding: 20px;*/
    /*position: absolute;*/
}
.fixed {
    position: fixed;
}

.input-div {
    margin:10px auto;
}
.design-type-input {
    margin-bottom: 30px;
}

.design-disable-on {
    color: grey;
}

.slidecontainer {
  width: 90%;
}


.slider {
  -webkit-appearance: none;
  height: 10px;
  border-radius: 5px; /*create the round slider ends instead of square*/
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}
/*
 -moz- Firefox, -webkit- Safari and Chrome -o- for Opera -ms- for Internet Explorer
*/

/* add color to the range that is covered */
/*Chrome*/



.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  /*outline: none;*/
  width: 20px;
  height: 20px;
  border-radius: 10px; /*create the round slider knob instead of square*/
  background: #0047AB;
  cursor: pointer;
}



/** Firefox*/
input[type=range]::-moz-range-progress {
  background-color: #0047AB;
  height: 10px;
  border-radius: 5px; /*create the round slider ends instead of square*/
  outline: none;
  opacity: 0.7;
  transition: opacity .2s;
}

input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 10px; /*create the round slider knob instead of square*/
  background: #0047AB;
  cursor: pointer;
}

.slider-span {
    /*display: inline-block;*/
    /*width: 20px;*/
}

/* tell the SVG path to be a thin blue line without any area fill */
.body {
  top: 0px; 
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: left;
  background-color:#ffffff;
  padding: 0px 50px 0px 50px;
  z-index: 5;
}

td {
    text-align: center;
}

/*
graph css
*/
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 ;}
}

@media print {
    #header {
        position: relative;
        height: 165px;
    }
    .noPrint {
        display: none;
        /*Modifications to elements that we don't want to print in a report*/
    }
    #body_main {
        margin-top: 0px;
    }
    
}
/*
canvas css
*/
canvas[id=normal_CURVE] {
    max-height: 600px;
    max-width: 700px;
}

/* text close to graphs */
.canvas-context {
    line-height: 2em;
}
.conclusion-div {
    line-height: 2em;
    text-align: left;
    margin: 10px 20px;

}
#cpk-context {
    padding: 10px;
    text-align: center;
}
