@charset "utf-8";
/* CSS Document */

#fixednavbar {
  overflow: hidden;
}

#fixednavbar a {
  float: left;
	background-color: #b59460;
  display: inline-block;
  color: #000000;
  text-align: center;
  padding: 4px 8px;
  text-decoration: none;
  font-size: 17px;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-right: 10px;
	border: 1px solid black;
	width: 190px;
}

#fixednavbar a:hover {
  background-color: #f5dead;
  color: black;
}

#fixednavbar a.active {
  background-color: #04AA6D;
  color: white;
}

.content {
  padding: 16px;
}

.sticky {
  position: fixed;
  top: 0;
  /*width: 100%;*/
  background-color: #000;
}

.sticky + .content {
  padding-top: 60px;
  background-color: #000;
}