@charset "utf-8";
.background {
    background-color: #EFF6F7;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}
.darkgreen {
    color: #426466;
    text-shadow: 0px 0px 0px #000000;
}
.lightgreen {
    color: #689CA0;
	text-shadow: 0px 0px 0px #000000;
}
.darkpurple {
    color: #5E6770;
	text-shadow: 0px 0px 0px #000000;
}
.purplegray {
    color: #A6C7CA;
    text-shadow: 0px 0px 0px #000000;
}
.greengray {
    color: #373B3E;
    text-shadow: 0px 0px 0px #000000;
}
.navbar {
  overflow: hidden;
  background-color: #EFF6F7;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
/* Links inside the navbar */
}
.navbar a {
  float: left;
  display: block;
  color: #A6C7CA;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
/* Change background on mouse-over */
.navbar a:hover {
  background: #ddd;
  color: black;
}

/* Main content */
.main {
  margin-top: 0px; /* Add a top margin to avoid content overlay */
}