body,html {
font-family: "verdana", sans-serif;
font-size: 14px;
line-height: 1.5
}
body {
	padding-top: 50px;
	padding-bottom:50px;
}
.centered {
    max-width: 960px;
    margin: auto;
}
.top{
    position: fixed;
    width: 100%;
    z-index: 1;
	top:0;
}

h1 { 
	font-family: 'Saira Extra Condensed';
	font-size: 50px;
	font-weight: 700;
	text-transform: uppercase;
	color: #286ea0;
}
h2 { 
	color: #286ea0;
	font-family: 'Saira Extra Condensed';
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 3px solid #286ea0;
}
h3{ 
	color: #286ea0;
	font-family: 'Saira Extra Condensed';
	font-size: 30px;
	font-weight: 700;
	border-bottom: 2px solid #286ea0;
}
a{
text-decoration: none;
color: #286ea0;
}

a:hover {
color: #286ea0 !important;
background-color:yellow;
}


/* Add an active class to highlight the current page */
.active {
  background-color: white;
  color: black!important;
}

/* background color and borders to the top navigation */
.topnav {
  overflow: hidden;
  background-color: black;
  border-radius:16px;
}
/* Style the links inside the main navigation bar */
.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  border-radius:16px;
  font-size: 15px;
}
/* style topnav links on hover */

.topnav a:hover {
  background-color: lightgrey;
  color: black!important;
}


/* 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 (for research) inside the topnav */
.dropdown .dropbtn {
    font-size: 15px;
    border: none;
    outline: none;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
	border-radius:16px;
}
/* style the dropdown button on hover */
.dropdown:hover .dropbtn {
  background-color: lightgrey;
  padding: 12px 16px;
}


/* Style the dropdown content (hidden by default) */

.dropdown-content{
	display: none;
    position: absolute;
	background-color:black;
	border-radius:16px;
    z-index: 1;
}

/* Style the links inside the dropdown */

.dropdown-content a {
    float: none;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    display: inline-block;
	background-color:black;
    text-align: left;
	font-size: 15px;
}
/* Add a style to dropdown links on hover */

.dropdown-content a:hover {
    background-color: lightgrey;
	text-decoration: none;
}
/* 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, .dropdown .dropdown-content {
    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 .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  /* not showing dropdown content sub menu on small screens */
  .topnav.responsive .dropdown-content {display:none; position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}