﻿* {

font-family:Verdana, Geneva, Tahoma, sans-serif;
	
}

html {
	height:98%;
}

body {
	display: flex;
    flex-direction: column;
    height:100%;
	ffont-size:1em;
}

input {
	font-size:1.02em;
	font-family:Verdana, Geneva, Tahoma, sans-serif;
} 
h1 {
	font-size:2.5em;
	padding:8px 10px;
	margin:0px;
}
#header{
   /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
   flex: 0 0 auto;
}
#content{
   /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
   flex: 1 0 auto;
}
#footer{
   /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
   flex: 0 0 auto;
   bottom:0px;
 
}

.slidertable {
	margin:0px 0px;	
}

.slidertable td {
	padding:5px;
	vertical-align:top;
	width:30px;
	text-align:right
}

.slidecontainer {
    width: 90%; /* Width of the outside container */
}

/* The slider itself */
.slider {
    -webkit-appearance: none;
    width: 90%;
    height: 15px;
    border-radius: 5px;  
    background: black;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%; 
    background: #42A6C6;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #42A6C6;
    cursor: pointer;
}

