@charset "utf-8";
/* CSS Document */
ol,ul {
	list-style: none;
}
.navbar {
  width: 100%;
  background-color: #000;
  overflow: auto;
}

.navbar a {
	float: left;
	padding: 10px;
	color: white;
	text-decoration: none;
	font-size: 15px;
	width: 25%; /* Four links of equal widths */
	text-align: center;
	font-weight: 600;
}

.navbar a:hover {
  background-color: #555;
}

.navbar a.active {
	color: #F90;
}

@media screen and (max-width: 500px) {
  .navbar a {
    display: inline;
	padding: 10px;
    text-align: left;
  }
