@charset "UTF-8";
#wrapper {
	min-width: 320px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
header {
	margin-top: 100px;
}
nav {
    margin-bottom: 80px;
    border-bottom: 5px solid black;
}
main {
padding-left: 20px;
padding-right: 20px;
padding-top: 0px;	
columns: 350px 3;
margin-bottom: 110px;
}
aside {
padding-left: 20px;
padding-right: 20px;
padding-top: 0px;	
columns:;
margin-bottom: 110px;
}
main p {
	font-family: Georgia, Constantia, 'Lucida Bright', 'DejaVu Serif',  'serif';
	font-size: 1.13em;
	line-height: 1.5em;
	vertical-align: baseline;
	margin: 0;
	text-indent: 1.5em;
}
section {
	margin-top: 40px;
	margin-bottom: 80px;
	margin-left: 18%;
	margin-right: 18%;
}
.summaryhead {
	font-family: Georgia, Constantia, 'Lucida Bright', 'DejaVu Serif',  'serif';
	font-size: 1.13em;
	line-height: 1.5em;
	vertical-align: baseline;
	margin: 0;
	color: #f47521;
}
.summaryheadsmall {
}
.footnote {
	font-size: .75em;
}
section p {
	font-size: 1.13em;
	line-height: 1.5em;
	vertical-align: baseline;
	margin: 0;
	text-indent: 1.5em;
}
footer {
	margin-top: 80px;
    border-top: 5px solid black;
	align-content: left;
	font-family: "source-sans-pro", "Helvetica Neue", "sans-serif";
	color: #f47521;
}
footer p {
	font-size: 80%
}
footer img {
	margin-right: 25px;
}
/* BELOW: RESPONSIVE NAV */
.topnav {
  overflow: hidden;
  background-color: white; /* <<< Color of the <nav> bar */
}
.topnav a {
  float: left;
  display: block;
  color: darkslategrey;  /* <<< Color of the type in <nav> bar */ 
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-family: "source-sans-pro", "Helvetica Neue", "sans-serif";
  font-size: 17px;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}
.active {
  background-color: #f47521;  /* <<< Color of the active page in the <nav> bar */
  color: white;
}

.topnav .icon {
  display: none;
}
/* BELOW: RESPONSIVE NAV MEDIA QUERY */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
/* BELOW: HIDE ICON WHEN THINNER THAN 1223px */
@media screen and (min-width:320px) and (max-width:800px){
	header {
		display: none;
	}
	main {
padding-left: 20px;
padding-right: 20px;
padding-top: 0px;
}
	section {
	margin-left: 2%;
	margin-right: 2%;
