@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic);

* {
    box-sizing: border-box;
}

body {
	background-color: LemonChiffon;
}

#container {
    overflow: auto;
    height: 100vh;
}

/* Style the header with a coral background and some padding */
header {
  overflow: hidden;
  width: 100vw;
  max-width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: coral;
  padding: 20px 10px;
  font-family: sans-serif;
}

/* Style the header links */
header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
header a.main {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
header a:hover {
  background-color: red;
  color: linen;
  font-weight: bold;
}

/* Style the active/current link*/
header a.active {
  background-color: black;
  color: coral;
  font-weight: bold;
}

/* Float the link section to the right */
nav {
  float: right;
}  

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */ 
@media screen and (max-width: 500px) {
  header a {
    float: none;
    display: block;
    text-align: left;
  }
  nav {
    float: none;
  }
}

form {
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    position: relative;
}

.form-label {
    margin: 10px 0px 10px 0px;
}

.form-label {
    font-weight: normal;
    font-family: serif;
    font-size: small;
    margin: 0;
}

.form-data {
font-weight: bold;
font-size: medium;
font-family: sans-serif;
}

/*
.form-label-vertical-center label {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
*/

input[type=text], input[type=password], input[type=date], input[type=number], input[type=tel], input[type=email], input[type=url], textarea, select {
    width: 100%;
    padding: 5px 5px;
    margin: 0;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid gray;
}

input[type=date] {
    display: inline-block;
    visibility: visible;
    text-align: left;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    min-height: 2em;
}

input:focus, textarea:focus, select:focus {
    background-color: bisque;
    border-radius: 5px;
}

textarea {
	resize: none;
	height: 150px;
}

input[type=range] {
    display: inline-block;
    width: 91%;
}

.slider-group {
    width: 100%;
    margin: 0;
}

.slider-label-group {
    width: 92%;
    font-family: serif;
	font-size: small;
}

.slider-label-left {
    display: inline-block;
    text-align: left;
    width: 45%;
    float: left;
}

.slider-label-right {
    display: inline-block;
    text-align: right;
    width: 45%;
    float: right;
}

.slider-label-spacer {
    padding: 0 39%;
    text-align: center;
}

.slider-value {
	box-sizing: border-box;
	width: 60px;
	font-weight: bold;
	border: 2px solid grey;
	padding: 2px 10px 2px 10px;
}

.buttons {
	text-align: center;
}

input[type=submit], input[type=reset], input[type=button] {
	font-weight: bold;
	font-size: 16px;
	background: #B9DFFF;
	color: #fff;
	padding: 15px 30px;
	border: 1px solid #eee;
	border-radius: 10px;
	box-shadow: 5px 5px 5px #eee;
	text-shadow: none;
}

input[type=submit]:hover, input[type=reset]:hover, input[type=button]:hover {
	font-weight: bold;
	font-size: 16px;
	background: #016ABC;
	color: #fff;
	padding: 15px 30px;
	border: 1px solid #eee;
	border-radius: 10px;
	box-shadow: 5px 5px 5px #eee;
	text-shadow: none;
}

p {
	font-family: sans-serif;
	position: relative;
}

h1, h2, h3, h4, h5, h6 {
	font-family: sans-serif;
	text-align: center;
	position: relative;
}

fieldset {
    position: relative;
}

legend {
	font-family:cursive;
	font-style: italic;
	position: relative;
}

.to-top {
    text-decoration: none;
    font-family: sans-serif;
}

.to-top:hover {
    color: chocolate;
    font-weight: bold;
}

table {
    border-collapse: collapse;
    font-family: sans-serif;
    border: 1px solid chocolate;
    position: relative;
}

thead {
    background-color: chocolate;
    color: linen;
}

th,td {
    padding: 5px;
}

tbody tr:nth-child(odd) {
    background-color: lightyellow;
}

tbody tr:nth-child(even) {
    background-color: peachpuff;
}

a.to-top {
    text-align: center;
}

footer {
	text-align: center;
	font-family: sans-serif;
	font-style: normal;
	font-size: small;
	position: relative;
}

footer span {
	text-align: center;
	font-family: cursive;
	font-style: italic;
	font-size: x-small;
}

.big-padding {
    padding-top: 60px;
}

.spacer {
    padding: 10px;
}

.notification {
	text-align: center;
	color: #d50000;
	font-size: small;
	font-style: italic;
}

blockquote {
  font-size: 1.4em;
  width:60%;
  margin:50px auto;
  font-family:Open Sans;
  font-style:italic;
  color: #555555;
  padding:1.2em 30px 1.2em 75px;
  border-left:8px solid #78C0A8 ;
  line-height:1.6;
  position: relative;
  background:#EDEDED;
}

blockquote::before {
  font-family:Arial;
  content: "\201C";
  color:#78C0A8;
  font-size:medium;
  position: absolute;
  left: 10px;
  top:-10px;
}

blockquote::after {
  content: '';
}

blockquote span {
  display:block;
  color:#333333;
  font-style: normal;
  font-weight: bold;
  font-size: small;
  margin-top:1em;
}