button, input[type=submit], input[type=button], input[type=reset] {
  cursor: pointer;
}

.button {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 9px 19px;
  line-height: 1.2;
  border: 1px solid #D11141;
  background: #D11141;
  color: #fff;
  transition: all 0.25s ease-out;
  border-radius: 6px;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
}
.button:hover {
  border-color: #D11141;
  background: #540D16;
}
.button:disabled {
  background: #4F565B;
  border-color: #4F565B;
  cursor: auto;
  pointer-events: none;
}
@media (min-width: 768px) {
  .button {
    font-size: 1.25rem;
    min-width: 186px;
  }
}

.button-secondary {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  line-height: 1.2;
  border: 2px solid #2B2B2B;
  background: #fff;
  color: #000;
  transition: all 0.25s ease-out;
  border-radius: 6px;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
}
.button-secondary:hover {
  border-color: #D11141;
  background: #D11141;
  color: #fff;
}
.button-secondary:disabled {
  border-color: #4F565B;
  color: #4F565B;
  cursor: auto;
  pointer-events: none;
}
@media (min-width: 768px) {
  .button-secondary {
    font-size: 1.25rem;
    padding: 10px 20px;
    min-width: 186px;
  }
}

.button-tertiary {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 12px;
  line-height: 1.2;
  border: 2px solid #D11141;
  background: #D11141;
  color: #fff;
  transition: all 0.25s ease-out;
  border-radius: 6px;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
}
.button-tertiary:hover {
  border-color: #D11141;
  background: #540D16;
  color: #fff;
}
.button-tertiary:disabled {
  border-color: #4F565B;
  color: #4F565B;
  cursor: auto;
  pointer-events: none;
}
.button-tertiary.active {
  border-color: #D11141;
  background: #540D16;
  color: #fff;
}

.button-download {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  line-height: 1.2;
  border: 2px solid #2B2B2B;
  background: #fff;
  color: #000;
  transition: all 0.25s ease-out;
  border-radius: 6px;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
}
.button-download:hover {
  border-color: #D11141;
  background: #D11141;
  color: #fff;
}
.button-download:disabled {
  border-color: #4F565B;
  color: #4F565B;
  cursor: auto;
  pointer-events: none;
}
@media (min-width: 768px) {
  .button-download {
    font-size: 1.25rem;
    padding: 10px 20px;
    min-width: 186px;
  }
}
.button-download:before {
  content: "";
  width: 20px;
  height: 24px;
  background: url("images/icn-download-big@2x.png");
  background-size: 20px 24px;
  display: flex;
  margin-right: 7px;
}
@media (min-width: 768px) {
  .button-download {
    padding-left: 16px;
    padding-right: 19px;
  }
}
.button-download:hover:before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(47%) saturate(82%) hue-rotate(40deg) brightness(111%) contrast(102%);
}

.lm-buttons.center {
  text-align: center;
}
.lm-buttons button:not(.button-download), .lm-buttons input:not(.button-download) {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 9px 19px;
  line-height: 1.2;
  border: 1px solid #D11141;
  background: #D11141;
  color: #fff;
  transition: all 0.25s ease-out;
  border-radius: 6px;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
}
.lm-buttons button:not(.button-download):hover, .lm-buttons input:not(.button-download):hover {
  border-color: #D11141;
  background: #540D16;
}
.lm-buttons button:not(.button-download):disabled, .lm-buttons input:not(.button-download):disabled {
  background: #4F565B;
  border-color: #4F565B;
  cursor: auto;
  pointer-events: none;
}
@media (min-width: 768px) {
  .lm-buttons button:not(.button-download), .lm-buttons input:not(.button-download) {
    font-size: 1.25rem;
    min-width: 186px;
  }
}

.button-warning {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  line-height: 1.2;
  border: 2px solid #D11141;
  background: #D11141;
  color: #fff;
  transition: all 0.25s ease-out;
  border-radius: 6px;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
}
.button-warning:hover {
  background: #540D16;
}
.button-warning:disabled {
  border-color: #4F565B;
  color: #4F565B;
  cursor: auto;
  pointer-events: none;
}
@media (min-width: 768px) {
  .button-warning {
    font-size: 1.25rem;
    padding: 10px 20px;
    min-width: 186px;
  }
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.28;
  color: #000;
}

p {
  margin: 0 0 25px;
}

ul, ol {
  margin: 0 0 25px;
  padding: 0;
}
ul li, ol li {
  margin: 0 0 21px 20px;
  padding: 0;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
  transition: all 0.25s ease-out;
  cursor: pointer;
  color: #000;
}
a:hover {
  color: #000;
  text-decoration-color: #D11141;
  text-decoration-thickness: 2px;
}

h1, .h1 {
  font-family: "Roboto", sans-serif;
  font-size: 2.25rem;
  line-height: 1.17;
  margin: 0 0 60px;
  padding-top: 0;
}
h1 + h2, h1 + .h2, h1 + h3, h1 + .h3, h1 + h4, h1 + .h4, .h1 + h2, .h1 + .h2, .h1 + h3, .h1 + .h3, .h1 + h4, .h1 + .h4 {
  padding-top: 0;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 2.25rem;
    line-height: 1.18;
  }
}

h2, .h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  line-height: 1.19;
  margin: 0 0 25px;
  padding-top: 35px;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 1.75rem;
    line-height: 1.17;
  }
}

h3, .h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.375rem;
  line-height: 1.14;
  margin: 0 0 35px;
  padding-top: 35px;
}
@media (max-width: 767px) {
  h3, .h3 {
    line-height: 1.2;
  }
}

h4, .h4 {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 25px;
  padding-top: 35px;
}
blockquote {
  font-style: italic;
  margin: 0 0 25px;
}

table {
  width: 100%;
  border-radius: 6px;
  background-color: #FFFFFF;
  box-shadow: 0 10px 17px 0 rgba(0, 0, 0, 0.15);
  border-collapse: separate;
  border-spacing: unset;
  border: none;
  margin: 0 0 25px;
}
table th {
  background-color: #404040;
  color: #fff;
  position: relative;
  border-top: none;
  border-bottom: none;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  font-weight: 500;
  line-height: 1;
  padding: 12px 14px;
  text-align: left;
}
@media (max-width: 1099px) {
  table th {
    font-size: 0.875rem;
  }
}
table th:first-child {
  border-left: none;
  border-radius: 6px 0 0 0;
}
table th:last-child {
  border-right: none;
  border-radius: 0 6px 0 0;
}
table th:after {
  content: "";
  height: 4px;
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
  background: #D11141;
}
table th a {
  color: #fff;
  text-decoration: none;
}
table th a:hover {
  color: #fff;
}
table td {
  padding: 10px 7px;
  border-bottom: 1px solid #D8D8D8;
  font-size: 0.875rem;
  vertical-align: top;
}
@media (min-width: 768px) {
  table td {
    padding: 16px 14px;
  }
}
@media (min-width: 1100px) {
  table td {
    font-size: 1rem;
  }
}
table td small {
  font-size: 0.75rem;
}
table tr:last-child td {
  border-bottom: none;
}
table tr:last-child td:first-child {
  border-radius: 0 0 0 6px;
}
table tr:last-child td:last-child {
  border-radius: 0 0 6px 0;
}
table tfoot td {
  background-color: #020303;
  color: #fff;
  position: relative;
  border-top: none;
  border-bottom: none;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  font-weight: 500;
  line-height: 1;
  padding: 12px 14px;
  text-align: left;
}
@media (max-width: 1099px) {
  table tfoot td {
    font-size: 0.875rem;
  }
}
table tfoot td:first-child {
  border-left: none;
  border-radius: 0 0 0 6px;
}
table tfoot td:last-child {
  border-right: none;
  border-radius: 0 0 6px 0;
}
table tfoot td:after {
  content: "";
  height: 4px;
  left: 0;
  right: 0;
  position: absolute;
  top: 0;
  background: #D11141;
}
@media (max-width: 990px) {
  table:not(.small-only) th,
table:not(.small-only) td {
    background-clip: padding-box;
    scroll-snap-align: start;
  }
  table:not(.small-only) thead {
    z-index: 1000;
    position: relative;
  }
  table:not(.small-only) th:first-child {
    position: sticky;
    left: 0;
    z-index: 100;
  }
  table:not(.small-only) td:first-child {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 100;
  }
}
table.lm-contentlist th a {
  display: block;
  position: relative;
  padding-right: 15px;
}
table.lm-contentlist th a:after, table.lm-contentlist th a:before {
  content: "";
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 5px;
  border-right-width: 5px;
  position: absolute;
  right: 0;
  top: 50%;
}
table.lm-contentlist th a:before {
  border-bottom: 7px solid #fff;
  transform: translate(0, -100%);
  margin-top: -1px;
}
table.lm-contentlist th a:after {
  border-top: 7px solid #fff;
  margin-top: 1px;
}
table.lm-contentlist th.lm-sort-desc a:after {
  border-top-color: #D11141;
}
table.lm-contentlist th.lm-sort-asc a:before {
  border-bottom-color: #D11141;
}

pre {
  word-wrap: break-word;
  white-space: pre-wrap;
}

hr {
  margin: 0 0 25px;
  border: none;
  border-bottom: 1px solid #979797;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

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