@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');

html, body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}
html.lang_rtl {
  direction: rtl;
}
a {
  font-weight: bold;
  color: #01579B;
  text-decoration: none;
  text-decoration-color: #01579B;
  word-break: break-all;
}
a:hover {
  text-decoration: underline;
}
a:active {
  text-decoration: underline;
}
.header {
  margin: 24px;
}
.header .title {
  margin-bottom: 0;
}
.header .title,
.header .subtitle {
  text-align: center;
}
.footer {
  font-size: 14px;
  margin: 24px;
  padding-top: 50px;
  text-align: center;
}
.footer .copyright {
  margin-bottom: 4px;
}
.footer .links {
  margin-top: 4px;
}
.document {
  line-height: 1.6;
  max-width: 800px;
  padding-left: 8px;
  padding-right: 8px;
  margin: auto;
  text-align: justify;
}
.document .table-of-contents ul {
  list-style: none;
}
.document .table-of-contents ul a {
  font-weight: normal;
}
@media (max-width: 768px) {
  .document {
    text-align: left;
  }
}
