  /**
 * @file
 * Visual styles for tabs.
 */
div.tabs {
  margin: 1em 0;
}

ul.tabs {
  margin: 0 0 0.5em;
  padding: 0;
  list-style: none;
}

.tabs a {
  display: block;
  padding: 0.2em 1.25em;
  text-decoration: none;
  margin: -0.2em 0;
}
.tabs a.is-active {
  margin: 0;
  border-radius: inherit;
}

.tabs li.is-active {
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), color-stop(25%), to(white));
  background: linear-gradient(to bottom, #f0f0f0, 25%, white);
  -webkit-box-shadow: 0 2px 4px inset #ccc;
          box-shadow: 0 2px 4px inset #ccc;
  border: 1px solid #ccc;
  border-bottom-style: none;
  border-radius: 4px 4px 0 0;
}

.tabs a:focus,
.tabs a:hover {
  background-color: #f0f0f0;
}

nav.tabs ul {
  margin: 0.5em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
nav.tabs ul li.is-active {
  margin-bottom: -0.5em;
  margin-bottom: 0.7em;
  margin-right: -1px;
}

nav.tabs .tabs li:nth-child(n+2) {
  border-left: 1px solid #ccc;
}

/*# sourceMappingURL=tabs.css.map */