* {
  font-family: 'Open Sans', sans-serif;
}
/* Prevents scrollbar from messing with navigation bar */
html {
  overflow-y: scroll;
  position: relative;
  min-height: 100%;
}
#pageContent {
    max-width: 1000px;
    /* width: 50% */
    margin: auto;
    border: none;
}

nav {
    display: inline-block;
    float: left;
}
nav ul li a {
    font-size: 18px;
    text-decoration: none;
    text-decoration: underline;
}
nav ul li a:hover {
	background: #FFF;
}
nav ul li {
    display: inline-block;
    margin: 15px;
}
nav ul {
    list-style: none;
}

/* Navbar */
.navbar {
	border-radius: 0;
	border: none;
	margin-bottom: 0;
	/* min-height: 80px; */
}

.nav li {
	display: inline;
  text-align: right;
	/* color: white; */
}

.navbar-inverse .navbar-nav > li > a {
	/* color: #ffffff; */
  text-align: right;
	/* font-family: Lato; */
	/* font-size: 1.7em; */
	/* font-weight: 300; */
	/* padding: 30px 25px 33px 25px; */
}

.navbar-nav li a:hover {
	background-color: transparent;
	transition: 0.3s all linear;
	/* height: 100%; */
}

.icon-bar {
  width: 90px; /* Set a specific width */
  background-color: #000; /* Dark-grey background */
}

.icon-bar a {
  display: block; /* Make the links appear below each other instead of side-by-side */
  text-align: right; /* Center-align text */
  /* padding: 16px; /* Add some padding */ */
  transition: all 0.3s ease; /* Add transition for hover effects */
  color: white; /* White text color */
  /* font-size: 36px; /* Increased font-size */ */
}

.icon-bar a:hover {
  /* background-color: #000; /* Add a hover color */ */
}

/* General body padding */
body {
  /* background-color: #f5f5f5; */
  color: #000000;
  margin: 0 0 100px;
  margin-bottom: 50px;
  border-width: 15px;
  /* text-decoration: none; */
  text-align: left;
  font-size: 14px;
  font-weight: normal;
  min-height: 100%;
  position: relative;
}

#footer {
  max-width: 1000px;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  /* bottom: 0px; */
  margin-bottom: 10px;
  position: relative;
  /* bottom: 0;
  right: 0; */

}

#smallerfont {
  font-size: 14px;
}

.smallerfont {
  font-size: 14px;
}

hr {
    border: 0;
    clear:both;
    display:block;
    width: 100%
    background-color:#FFFF00;
    height: 1px;
}

#tableContent {
  min-height:200px;
  padding-top:10px;
  padding-bottom:10px
}
/* Generic table padding */
table, td, th {
  border: 1px solid black;
}

/* Resizing image to fit page */
img.resize {
  max-width: 100%;
  max-height: 100%;
}

/* Option to decrease padding */
h1.decPad, h2.decPad, h3.decPad, h4.decPad, h5.decPad, h6.decPad, p.decPad, ul.decPad, ol.decPad {
  margin:0;
  padding:0;
}

/* Enabling animation on hover, from
https://designshack.net/articles/css/5-simple-and-practical-css-list-styles-you-can-copy-and-paste/ */
li.fancy a {
  text-decoration: none;
  color: #000;
  display: block;
  width: 200px;

  -webkit-transition: font-size 0.3s ease, background-color 0.3s ease;
  -moz-transition: font-size 0.3s ease, background-color 0.3s ease;
  -o-transition: font-size 0.3s ease, background-color 0.3s ease;
  -ms-transition: font-size 0.3s ease, background-color 0.3s ease;
  transition: font-size 0.3s ease, background-color 0.3s ease;
}

li.fancy a:hover {
  font-size: 30px;
  background: #f6f6f6;
}
.image_overlay {
   position: relative;
   width: 100%;
}

h1.overlay {
   position: absolute;
   top: 200px;
   left: 0;
   width: 100%;
   font-size: 50px;
}

a.atypical {
  color: black;
}

/* TOPNAV CSS AND JAVASCRIPT FROM
https://www.w3schools.com/howto/howto_js_topnav_responsive.asp */

/* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the
first one. Show the link that contains should open and close the topnav */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* 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;
  }
}

/* .home a:hover, a:visited, a:link, a:active
 {
  text-decoration: none;
} */

/* Remove dropdown arrow from datalist */
input::-webkit-calendar-picker-indicator {
  display: none !important;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}
