body {
  background-color: white;
  font-family:'Actor';
  line-height: 1.8;
  margin: 0;
}

header {
  background-image: url('header1.jpg');
  background-size: 1500px 250px;
  color: white;
  text-align: center;
  font-size: 35px;
  font-family:'Aboreto';
  margin: 0;
}

nav.header {
  position: sticky;
  top: 0;
  overflow: hidden;
  margin: 0;
}

nav.header ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: powderblue;
  display: flex;
  justify-content: space-evenly;
}

nav.header li {
  float: left;
}

nav.header li a {
  display: block;
  font-size: 20px;
  color: black;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-family: 'Aboreto';
}

nav.header li a:hover {
  color:navy;
  text-decoration:underline;
}

.supplies ul {
  list-style-type: none;
  justify-content: space-evenly;
}

.supplies li {
  float: left;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.active {
  background-color: DarkCyan;
}

 /* The sidebar menu */
.sidenav {
  background-color: DarkCyan; 
 height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 160px; /* Set the width of the sidebar */
 /* Fixed Sidebar (stay in place on scroll) */
  position:fixed;
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: powderblue;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

.pagecontent {
  margin-left: 160px; /* Same as the width of the sidebar */
  padding: 0px 10px;
  background-color: white;
  font-family:'Actor';
  line-height: 1.8;
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
} 


article {
  padding-bottom: 15px;
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
}


section ul {
  list-style-type: disc;
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

th, td {
  padding: 15px;
}

.collapsible {
  background-color: LightGrey;
  color: #444;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  border-radius: 4px;
}

.collapsible:after {
  content: '\1f783'; 
  font-size: 13px;
  color: white;
}

button.active:after {
  content: "\1f781"; 
}

.content {
  background-color: LightGrey;
  display: none;
}

h1 {
  background-color: rgba(0, 0, 0, .4)
}

h2 {
  text-align: center;
}

.hangingindent {
  padding-left: 22px ;
  text-indent: -22px ;
} 

.jump {
  position:relative;
}

.anchor {
  height: .1px;
  position:absolute;
  top: -75px;
}
