body {
	font-family: verdana, sans-serif;
	color: #666;
	background: #fafafa;
	padding: 20px;
	text-align: left;
}

h1 {
	text-decoration: underline red;
	text-decoration-thickness: 3px;
	text-underline-offset: 6px;
	font-size: 200%;
	font-weight: bold;
}

h2 {
	font-weight: bold;
	color: #005A9C;
	font-size: 120%;
	text-transform: uppercase;
}

h3 {
	font-weight: bold;
	color: #005A9C;
	font-size: 100%;
	margin: 10px 3px;
}

h4 {
	font-weight: bold;
	font-size: 100%;
	margin: 10px 3px;
}

label {
	font-size: 16px;
	color: #000;
}

.cbItem {
	color: black;
	font-style: italic;
}

.emph {
	color: black;
	font-style: normal;
	font-weight: bold;
}

.emphW {
	color: #005A9C;
	font-style: normal;
	font-weight: bold;
}

.para {
	color: dimgray;
	font-style: normal;
	line-height: 150%;
}

.info {
	color: lightslategray;
	font-style: italic;
}

.info2 {
	color: #0066FF;
	font-style: italic;
}

.warning {
	font-weight: bold;
	color: #FF0000;
}

button {
	margin-left: 0px;
	padding: 5px;
	margin-top: 5px;
	font-size: 16px;
}

.button {
	font-family: Verdana;
	padding: 5px 5px;
	font-size: 16px;
	text-align: center;
	color: black;
	text-decoration: none;
	background-color: gainsboro;
	border: 1px solid black;
	border-radius: 5px;
}

.button:hover {
	background-color: gray;
}

audio {
	display: block;
	width: 50%;
	margin-top: 0.2rem;
}

input[type=text] {
	height: 20px;
	width: 500px;
	margin: 10px 0;
}

input[type=zipcode] {
	height: 20px;
	width:100px;
	margin: 3px 0;
}

.move-left {
	margin: 0 0 0 10px;
	width: auto;
	box-shadow: none;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	select {
		height: 25px;
		line-height: 30px;
		background: #f4f4f4;
		margin: 3px 3px;
	}
}

select_multi {
	appearance: none;
	outline: 0;
	background: green;
	background-image: none;
	width: 20%;
	height: 50%;
	color: black;
	cursor: pointer;
	border: 1px solid black;
	border-radius: 3px;
}

.select_multi {
	position: relative;
	display: block;
	width: 15em;
	height: 2em;
	line-height: 3;
	overflow: hidden;
	border-radius: .25em;
	padding-bottom: 10px;
}

ul.a {
	list-style-type: circle;
}

li.a {
	list-style: disc;
	margin-bottom: 1rem;
}

ul.dashed {
	list-style-type: none;
}

ul.dashed > li {
	text-indent: -20px;
}

ul.dashed > li:before {
	content: "-";
	text-indent: -20px;
}

.loader {
	border: 4px solid #f3f3f3; /* Light grey */
	border-top: 4px solid #3498db; /* Blue */
	border-radius: 50%;
	width: 25px;
	height: 25px;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.float-container {
	border: 3px solid #fff;
	padding: 20px;
}

.float-child {
	width: 50%;
	float: left;
	padding: 20px;
	border: 2px solid red;
}

img {
	max-width: 100%;
	height: auto;
}