html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

ul.tabs {
    overflow: auto;
	text-align: center;
}

ul.tabs.primary {
    margin: 0;
	padding: 0;
}

ul.tabs li {
  display: inline-block;
}

ul.tabs a {
  font-family: 'Grandstander', sans-serif;
  display: block;
  background: #3dccf0;
  color: #111;
  font-size: 0.9em;
  font-weight: 700;
  border-top: 4px solid #111;
  border-right: 4px solid #111;
  border-left: 4px solid #111;
  border-radius: 10px 10px 0 0;
  padding: 5px 6px;
}

ul.tabs a:hover {
	background: #ffc61b;
	}

