			/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #1f2325;
  color: white;
  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: #21282c;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: solid;
	border-color: #3b404c;
  text-align: left;
  outline: none;
  font-size: 22px;
	font-weight: bold;
}

			.collapsible3 {
  background-color: #2d363c;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: solid;
	border-color: #3b404c;
  text-align: left;
  outline: none;
  font-size: 22px;
	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: #2C3E50;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #3b404c;
}
body {
	background-color: #3b404c;
}
body {
	color: white;
}
table {
	background-color:#1f2325
}
table, tr, th, td {
	border:solid 2px #3b404c;
}
table tr#ROW1  {background-color:660000; color:white;}
table tr#ROW2  {border:solid 2px #3b404c; color:white;}

					  .center {
  margin-left: auto;
  margin-right: auto;
}
			.collapsible{
  justify-content: center;
}

/*Tables*/

/*Text Size Code - Add all code for text sizes here!!!!*/

#text1 {
	font-size: 40px;
}
#bodytexthuge {
	font-size: 80px;
}
#smalltext {
	font-size: 14px;
}
#bodytext10 {
	font-size: 30px;
	font-weight: bold;
}
#bodytext1 {
	font-size: 16px;
}

/*Text Size Code Ends*/

			.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  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: white;
  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;
}

/* unvisited link */
a:link {
  color: red;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}

/*word-wrap?*/

div.wrap {
	width: 50%;
	word-wrap: break-word;
}
pre {
  font-family: Arial, Helvetica, sans-serif;
}
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;
}

/*FONT FAMILY PACIFICO*/

@font-face {
    font-family: 'pacificoregular';
    src: url('/fonts/pacifico/pacifico-webfont.woff2') format('woff2'),
         url('/fonts/pacifico/pacifico-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

div.pacifico {
	font-family: 'pacificoregular', Arial, sans-serif;
	font-weight: normal;
    font-style: normal;
}

/*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: #1f2325;
  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: #3b404c;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}
