			/* 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: #1f2325;
  color: white;
  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: #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;
}

/*Checkmark and cross for Register*/
span {
  content: "\2714";
	font-size: 15px;
}

span {
	content: "\02717";
	font-size: 15px
}

/*NAVBAR*/
/* Add a black background color to the top navigation */
.topnav {
  background-color: #1f2325;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/*DROPDROWN*/

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #1f2325;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
	color: black;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1f2325;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}