
html {
  font-size: 62.5%;
}

body {
  background-color: #f7f9fc;
	margin: auto;
	font-family: "Roboto";
	color: #01364e;
  font-size: 10pt;
}
.discl {
  font-family: "Roboto";
  font-size: small;
  margin-top: 15px;
}

/*Header Begins*/
.header {
  background-color: #046c9b;
  color: #ffffff;
  padding: 10px;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-left: 350px;
  padding: 20px;
}
.navbar {
display: flex;
align-items: end;
vertical-align: bottom;
margin-right: 50px;
}

.logo {
width: 140px;
cursor: pointer;
margin-left: 50px;
}
.meet-button {
width: 200px;
cursor: pointer;
margin-left: 40px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li {
  list-style: none;
  display: flex;
  margin-left: 40px;
  vertical-align: bottom;
}

.navbar ul li a {
  text-decoration: none;
  color: #f7f9fc;
  font-size: 15px;
  vertical-align: bottom;
  font-weight: 200;
}

/*
a.active, a:hover {
  background: #046c9a;
text-decoration: underline;
  transition: .5s;
}
*/
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #ffffff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar {
      display: none;
      flex-direction: column;
      width: 100%;
      text-align: center;
  }

  .navbar.active {
      display: flex;
  }

  .menu-toggle {
      display: flex;
  }

  .header-container {
      flex-direction: column;
  }

  .navbar ul {
      flex-direction: column;
      gap: 10px;
  }

  .navbar ul li {
      margin-left: 0;
  }

  .nav {
      flex: 1;
      text-align: center;
      vertical-align: bottom;
  }
}
/*Header Ends*/


/*TOC Begins*/

.toc-container {
  grid-column: 1 / 2;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 300px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-height: 100vh;
  overflow-y: auto;
  grid-column-start: 1;
}

.logo-azul {
width: 125px;
margin: 25px;
display: block;
  margin-left: auto;
  margin-right: auto;
}

.toc-container h2 {
  margin-top: 0;
}

#toc ul {
  list-style-type: none;
  padding-left: 0;
}

#toc ul ul {
  padding-left: 20px;
  display: none;
}

#toc li {
font-size: 14px;
line-height: 25px;
font-weight: 400;
}

#toc a {
  text-decoration: none;
  color: #01364e;
}

#toc a:hover {
  text-decoration: underline;
  color: #9b5604;
}

.nested {
display: none;
text-indent: 10px;
}

/*If you want to display the chapters when hovering uncomment the following rule*/
/*
.title:hover > .nested {
  transition: 1s;
  display: block;
}
*/


section {
  margin-left: 300px;
  padding: 20px;
font-size: 12px;
}

/* Hide TOC on mobile devices */
@media (max-width: 768px) {
  .toc-container {
      display: none;
  }
}

/*TOC End*/

/*Grid Container*/

main {
  display: grid;
  grid-template-columns: minmax(1fr, min-content) minmax(2fr, min-content);
  row-gap: 3rem;
  max-width: 750pt;
  margin: auto;
  gap: 10px;
}

/*Content*/
.content {
  grid-column: 2 / 3;
  padding: 10px;
	
}

.content p{
  line-height: 1.25;
  text-align: justify;
}

.content h1 {
  padding-top: 12pt;
  color: #046c9b;
  font-weight: 700;
  font-size: 25pt;
  padding-bottom: 1pt;
  line-height: 1.15;
  border-bottom-width: 1.5pt;
  font-family: "Roboto";
  text-align: center;
}
.content h2 {
  text-align: center;
  font-family: "Roboto";
  font-size: 20pt;
  color: #046c9b;
  font-family: 500;
  line-height: 1.5;
}
.content h3 {
  text-align: center;
  font-family: "Roboto";
  font-size: 15pt;
  color: #01364e;
  font-family: 500;
  line-height: 1.5;
}
.middle {
  color: #01364e;
  text-align: center !important;
  font-weight: 600;
  line-height: 1.5;
}
.article {
  font-weight: bold;
}
.amendment {
  text-align: right !important;
  color: blue;
  font-size: 9pt;
  text-decoration: underline;
  margin-bottom: 3px;
}
.content ol{
  line-height: 1.5;
}

.content ol li {
  margin-bottom: 10px;
}


/*Tables Begin*/
table {
  text-align: center;
  table-layout: fixed;
  width: 50%;
  border-collapse: collapse;
  border: 1px solid #01364e;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  caption-side: bottom;
}

th, td {
  border: 1px solid #01364e;
}
caption {
  text-align: left;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}


/*Tables End*/
