/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
  .tabs-hide {
    display: none;
  }
}

/* Hide useless elements in print layouts... */
@media print {
  .tabs-nav {
    display: none;
  }
}

/* Skin*/
.tabs-nav .tabs-selected a {
  display: block;
  padding: 0 8px;
  color: #fff;
  text-shadow: #333 0 -1px 0;
  line-height: 27px;
  height: 28px;
  background: #666;
}

.tabs-container .item-list {
  padding: 10px 0;
}

.tabs-container .item-list ul {
  margin-left: 1.5em;
}

.tabs-container .item-list li {
  list-style: disc;
}

.tabs-container .tabs-nav {
  border: none;
  background: #666;
  font-size: 11px;
}

.tabs-container .tabs-nav a,
.tabs-container .tabs-nav a:link,
.tabs-container .tabs-nav a:visited {
  font-weight: bold;
  outline: none;
  display: block;
  padding: 0 10px;
  color: #ccc;
  position: relative;
  bottom: 0;
  background-color: transparent;
  line-height: 20px;
  height: 20px;
}

.tabs-container .tabs-nav a:hover {
  color: #fff;
}

.tabs-container .tabs-nav .tabs-selected a {
  display: block;
  background: none;
  padding: 0 10px;
  color: #fff;
  text-shadow: none;
  line-height: 20px;
  height: 20px;
}