* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	max-width: vw;
	min-height: 100vh;
	background: #000;
}

body {
	width: 100%;
	max-width: 90%;
	margin: 0 auto;
	font-size: 16px;
	font-family: Verdana, Arial, Tahoma, sans-serif;
	font-family: 'Times New Roman', 'New Century Schoolbook', Garamond, Serif;
	line-height: 1.6;
	letter-spacing: 0.05rem;
	background-color: #333;
}

#page_body {
	/* border: solid 2px red; */
	background-color: papayawhip;
}

header {
	/* basically defines the container for .title and .nav */
	height: 78px;
	background: #333;
	display: flex;
	justify-content: flex-start;
	color: papayawhip;
}

main {
	flex-grow: 1;
	background: papayawhip;
	color: #000;
}

h1 {
	font-size: 18px;
	font-weight: 800;
	padding: 0.2em;
	line-height: 1em;
	letter-spacing: -0.2px;
}

h2 {
	font-size: 16px;
	padding: 0.2em;
	font-weight: 700;
}

h3 {
	font-size: 14px;
	padding: 0.4em;
	font-weight: 600;
	line-height: 1.4em;
}

p {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.8em;
}

footer p {
	font-size: 0.5em;
}

ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.box::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin: 0px 0px 10px 10px;
  background: url(../Graphics/CHECK.gif) no-repeat;
  background-size: contain;
}


a {
	text-decoration: none;
}

footer {
	width: 80%;
	margin: 0 auto;
	padding: 1em;
}

.blue {
	font-weight: 900;
	color: cornflowerblue;
}
.grey {
	color: grey;
}
.red {
	color: brown;
}
.black {
	color: black;
}
.green {
	font-weight: 900;
	color:  green;
}
.bold {
	font-weight: 900;
}