			/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #BEC0C1;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
	text-align: left;
  border: solid;
	border-color: #3b404c;
  outline: none;
  font-size: 22px;
	font-weight: bold;
}
			.collapsible2 {
  background-color: #BEC0C1;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 75%;
  border: solid;
	border-color: #3b404c;
  text-align: left;
  outline: none;
  font-size: 18px;
	font-weight: bold;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ffffff;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #ffffff;
}
body {
				background-color: #ffffff;
			}
			body {
				color: black;
			}
			table, th, td {
  border:1px solid #0c0f13;
}
					  .center {
  margin-left: auto;
  margin-right: auto;
}
			.collapsible{
  justify-content: center;
}

			.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: black;
  float: right;
  margin-left: 5px;
}
.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
			.column {
  float: left;
  width: 50%;
}

						.collapsible2:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: black;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
			.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
.responsive .right {
  float: right;
  text-align: right;
  width: 50%;
}
.align-right {
  float: left;
  width:33%;
}
.align-left {
  float: left;
  width:33%;
}
div.sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}
body {
	font-family: Arial, Helvetica, sans-serif;
}

/*Text Size Code*/

#bodytext10 {
	font-size: 30px;
	font-weight: bold;
}

#bodytexthuge {
	font-size: 80px;
}

#bodytext1 {
	font-size: 16px;
}

#text1 {
	font-size: 40px;
}

/*Line-Height Code*//

ul {
  line-height: 1.55; 
}
li {
  line-height: 1.55; 
}

p {
	line-height: 1.25;
}

th, td {
	line-height: 1.35
}

th, td {
	padding: 5px;
}

/*POPUP CODE*/
.popup-container {
  display: none; /* Hidden by default */
  position: fixed; /* Stays in place even when scrolling */
  z-index: 1000; /* Ensures it's on top of other content */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background overlay */
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Adjust as needed */
  max-width: 500px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#closePopup {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}