
html,body,h1,h2,h3,h4,h5,h6 {font-family: Lato,sans-serif}
.w3-sidebar {
  z-index: 3;
  width: 175px;
  top: 55px;
  bottom: 0;
  height: inherit;
}

/*------------------------------ Top Menu w/ Drop Down Start --------------------------------------------*/
/* The navigation menu */
.navbar {
  overflow: hidden;
  background-color: white;
}

/* Navigation links */
.navbar a {
  margin-top: px;
  float: left;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: Lato,sans-serif;
  display: block;
  font-size: 13px;
  font-weight: 500;
  color:black;
  text-align: center;
  padding: 14px 8px;
  text-decoration: none;
}

/* The subnavigation menu */
.subnav {
  float: left;
  overflow: hidden;
}

/* Subnav button */
.subnav .subnavbtn {
  font-family: Lato,sans-serif;
  display: block;
  font-size: 14px;
  font-weight: 500;
  border: none;
  outline: none;
  color: black;
  padding: 14px 8px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Add a gray background color to navigation links on hover */
.navbar a:hover, .subnav:hover .subnavbtn {
  background-color: #eee;
}

/* Style the subnav content - positioned absolute */
.subnav-content {
  font-family: Lato,sans-serif;
  display: block;
  font-size: 13px;
  font-weight: 500;
  display: none;
  position: absolute;
  left: 100;
  background-color: white;
  width: 100%;
  z-index: 1;
}

/* Style the subnav links */
.subnav-content a {
  float: left;
  font-family: Lato,sans-serif;
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: black;
  text-decoration: none;
}

/* Add a grey background color on hover */
.subnav-content a:hover {
  background-color: #eee;
  color: black;
}

/* When you move the mouse over the subnav container, open the subnav content */
.subnav:hover .subnav-content {
  display: block;
}
/*------------------------------ Top Menu w/ Drop Down End --------------------------------------------*/

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

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

/* Active/current link */
.sidebar a.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;
  height: 1000px;
}

/* On screens that are less than 700px wide, make the sidebar into a topbar */
@media screen and (max-width: 700px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .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 {
    text-align: center;
    float: none;
  }
}
/*-------------------------------------- Sidebar End--------------------------------------------------*/
