#wrapper h1 {
	/*font-family: Helvetica Neue, Helvetica, Arial, sans-serif;*/
	font-family: Arial, Open Sans; font-size: 24px; font-style: normal; font-weight: normal;
	text-decoration:none;
	color: rgb(80,80,80);
}



/*
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: 0;	/*prevents blue outline from appearing after click*/
}
*/

.clearfix {
    overflow: auto;
}

/* FOR SOME STRANGE REASON, .slider MUST APPEAR AFTER .clearfix */
.slider {
  -webkit-appearance: none;
  width: 530px;
  height: 7px;
  border-radius: 5px;
  background: rgb(212,212,212);
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
}
.slider:hover {
  opacity: 1;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgb(160,160,160);
  cursor: pointer;
}
.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgb(160,160,160);
  cursor: pointer;
}