@charset "utf-8";
/* CSS Document */
body {
	margin:0;	
    font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	color: navy;
	background-color: #88AFD7;
}

.navbar {
  list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
  background-color: #AABCDE;
  position: fixed;
  top: 0;
  width: 100%;
}

.navbar a {
  float: left;
  display: inline-block;
  color: #000066;
  text-align: center;
  padding: 25px 13px;
  text-decoration: none;
  font-size: 18px;
}
.navbar a:last-child {
    border-right: none;
}
.navbar a:hover {
  background-color: #88AFD7; 
  color: black;
}

	

.active {
  background-color: #4965EB;
  color: white;
}

.navbar .icon {
  display: none;
}

li {
    float: left;
}

li a, .dropbtn {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 0px 0px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: #88AFD7;
}

li.dropdown {
	display: inline-block;
	}

.dropdown-content {
    display: none;
    position: inherit;
    background-color: #88AFD7;
    min-width: 53%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #000066;
    padding: 10px 10px;
    text-decoration: none;
    display: inline-block;
    text-align: left;
}
.dropdown-content a:hover {background-color: #336699}

.dropdown:hover .dropdown-content {
    display: inline-block;
}


@media screen and (max-width: 600px) {
  .navbar a:not(:first-child) {display: none;}
  .navbar a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .navbar.responsive {position: relative;}
  .navbar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
}

.navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

.centerDoc {
	color: navy;
	background-color: #88AFD7;
	margin-top: 50px;
	border: none;
	} 

