@charset "UTF-8";

* {
  box-sizing: border-box;
}

body {
  font-family: Lucida Sans Unicode, Century Gothic, Verdana, sans-serif;
  background-color: #dee3bf;
  max-width: 960px;
  margin: auto;
  padding: 15px;
}

.header {
  clear: right;
  padding-bottom: 10px;
  overflow: auto;
}

.headerright {
  text-align: right;
  float: right;
}

.headerleft {
  width: 70%; 
  float: left; 
  padding-top: 10px;
}

a:link {
	color: #464646;
	text-decoration: underline;
}
a:visited {
	color: #464646;
	text-decoration: underline;
}
a:hover, a:active, a:focus { 
	color: #0082c6;
	text-decoration: none;
}

a img { 
	border: none;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #666f49;
}


/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
  font-size: 16px;
}

/* Add an active class to highlight the current page colour pink on the navbar */
.active {
  background-color: #303718;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 10px 10px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown button to fit inside the topnav and have the active pink colour to highlight the current page */
.dropbtnactive {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 10px 10px;
  background-color: #303718;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 10px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a pale blue background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #a5af84;
  color: white;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav .dropbtnactive:hover {
  background-color: #a5af84;
  color: white;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav .active:hover {
  background-color: #a5af84;
  color: white;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}


/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
      .topnav a:not(:first-child), .dropdown .dropbtnactive {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
	color: white;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
 
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
  .topnav.responsive .dropdown .dropbtnactive {
    display: block;
    width: 100%;
    text-align: left;
	background-color: #303718;
  }
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.wholewidth {   
  width: 100%;
  margin-top: 20px;
}

.row {   
  width: 100%;
  margin-top: 20px;
  background-color: white;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftthreecolumn, .middlethreecolumn, .rightthreecolumn, .narrowcolumn {   
  float: left;
  width: 33.33%;
}

/* Create two equal columns that floats next to each other */
/* Left column */
.lefttwocolumn, .righttwocolumn {   
  float: left;
  width: 50%;
}

/* Create two equal columns that floats next to each other */
/* Left column */
.leftbigcolumn, .rightbigcolumn {   
  float: left;
  width: 66.67%;
}

/* Create two equal columns that floats next to each other */
/* Left column */
.leftsmallcolumn,.rightsmallcolumn {   
  float: left;
  width: 33.33%;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* format card headers */
.title {
  color: #666f49;
  text-align: center;
}

.sup {
font-size: 0.75em;    
vertical-align: 0.5em;   
line-height: 0;
}

/* format card headers */
.threecolumntext {
  color: black;
  text-align: center;
  font-style: normal;
  font-size: large;
}

/* format card headers */
.twocolumntext {
  color: black;
  text-align: left;
  font-style: normal;
  font-size: medium;
}


/* Footer */
.footer {
  margin-top: 20px;
  text-align: left;
  background-color: #666f49;
  padding: 20px;
  color: white;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  font-family: Lucida Sans Unicode, Century Gothic, Verdana, sans-serif;
  font-weight: bold;
  background-color: white;
  cursor: pointer;
  padding: 16px 20px 4px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: larger;
  color: black;
  text-align: left;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.collapsibleactive, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.collapsiblecontent {
  padding: 0px 20px 0px 40px;
  display: none;
  overflow: hidden;
  background-color: white;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  body {
  padding: 0px;
  font-size: medium;
} 
  .leftthreecolumn, .middlethreecolumn, .rightthreecolumn, .lefttwocolumn, .righttwocolumn, .leftbigcolumn, .rightsmallcolumn, .leftsmallcolumn, .rightbigcolumn, .narrowcolumn {   
    width: 100%;
    padding: 0;
  }
  .threecolumntext, .twocolumntext {   
  font-size: medium;
  }
  h1 {
  font-size: 6vw;
}
  h2 {
  font-size: 5.7vw;
}
.headerright {
  display: none;
}
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
  
  
}