/*
 * DedeCMS leaf-category pagination compatibility.
 * The generator emits <li> items inside .main .page, while the legacy
 * stylesheet only styles the nested <a> elements.
 */
.main .page {
  width: 100%;
  box-sizing: border-box;
}

.main .page > li {
  display: inline-block;
  margin: 0;
  list-style: none;
  vertical-align: middle;
}

.main .page > li.thisclass {
  margin: 0 1px;
  padding: 5px 10px;
  background-color: #414141;
  color: #fff;
  font-size: 14px;
}
