body {
  font-family: Open Sans;
}

/* The side navigation menu */
.sidebar {
  background-color: #f1f1f1;
  height: 100%;
  margin: 0;
  overflow: auto;
  padding: 0;
  position: fixed;
  width: 200px;
}

/* Sidebar links */
.sidebar a {
  color: black;
  display: block;
  padding: 16px;
  text-decoration: none;
}

/* Active/current link */
.active {
  background-color: #04AA6D;
  color: white;
}

/* Links on mouse-over */
.sidebar a:hover:not(.active) {
  background-color: #555;
  color: white;
}

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
div.content {
  margin-left: 200px;
  padding: 1px 16px;
}

/* On screens that are less than 700px wide, make the sidebar into a topbar */
@media screen and (max-width: 700px) {
  .sidebar {
    height: auto;
    position: relative;
    width: 100%;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}
}

/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
@media screen and (max-width: 400px) {
  .sidebar a {
    float: none;
    text-align: center;
  }
}


p {
  font-family: Open Sans;
  font-size: 10pt;
  padding-bottom: 6pt;
  padding-top: 6pt;
}

.note {
  background-color: #f5f5f5; 
  border: 1px solid black; 
  border-radius: 5px;  
  padding: 10px; 
}

h1 {
  font-family: Open Sans;
  font-size: 20pt;
  font-weight: bolder;
  padding-bottom: 6pt;
  padding-top: 6pt;
}

h2 {
  font-family: Open Sans;
  font-size: 16pt;
  font-weight: bold;
  padding-bottom: 6pt;
  padding-top: 6pt;
}

h3 {
  font-family: Open Sans;
  font-size: 14pt;
  font-weight: bold;
  padding-bottom: 6pt;
  padding-top: 6pt;
}


li {
	font-family: Open Sans;
	font-size: 12pt
}