#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);
}

fieldset {
	align: center;
	text-align: center;
	border: 0px;
	padding: auto;
	/*border: 1px solid rgb(240,240,240);*/
	height: auto;
	width: auto;
	float: none;
	display: inline-block;
	vertical-align: top;
}
legend {
	font-size: 15px;
	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: 500px;
  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: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgb(160,160,160);
  cursor: pointer;
}
.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgb(160,160,160);
  cursor: pointer;
}