* {
  box-sizing: border-box;
}

figcaption {
  font-style: italic;
}
img {
  max-width: 100%;
  height: auto;
}
h1 {
	font-size: 40px;
}
h2 {
	font-size: 30px;
}
p {
	font-size: 18px;
}
p.i {
  text-indent: 1em;
}
body {
	background-color: black;
	color: lightgrey;
	font-family: 'Open Sans', sans-serif;
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
}
a:link {
	color: white;
}
a:visited {
	color: darkgrey;
}
a:hover {
	color: cyan;
}
li:not(:last-child) {
    margin-bottom: 5px;
}
li.a {
  content: "&#10004;";
}
ul {
	list-style-type: square;
	text-indent: 0 !important;

}
ul.a {
	list-style-type: disc;
	text-indent: 0 !important;

}
ul.b {
	list-style-type: circle;
	text-indent: 0 !important;

}
ul.d {
  list-style: "\2713\0020\0020";
  text-indent: 0 !important;
}
div.a {

}
.column {
  float: left;
  width: 50%;
}
@media only screen and (max-width:768px){
  [class*="column"] {
    width: 100%;
  }
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* BEGIN code insert formatting */
blockquote.code {
  font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
}
span.code {
  font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
}
span.t { /* single tab */
  margin-left: 10px;
}
span.tt { /* double tab */
  margin-left: 20px;
}
span.ttt { /* triple tab */
  margin-left: 30px;
}
/* END code insert formatting */
/* BEGIN table formatting */
td, th { /* column spacing */
    padding:0 15px;
}
table.thin, th.thin, td.thin {
  border: 1px solid white;
  border-collapse: collapse;
}
/* END table formatting
/* BEGIN accordion formatting */
.accordion {
  background-color: #1E1E1E;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 30px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: lightgray;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: black;
  overflow: hidden;
}
/* END accordion formatting */
/* BEGIN gallery formatting */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  grid-auto-rows: auto;
  gap: 12px;
}

@media (min-width: 800px) {
  .gallery {
    grid-template-columns: repeat(4,1fr);
  }
}

.gallery-item {
  border: 1px solid #ccc;
  max-width: 512px;
  min-width: 120px;
}

.gallery-item:hover {
  border: 1px solid #777;
}

.gallery-item .gallery-item-description {
  padding: 15px 5px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
}

.gallery-item-description.x-small {
  font-size: 12px;
}

.gallery-item-description.xx-small {
  font-size: 10px;
}


.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/* END gallery formatting */
.mc_embed_signup {
  font-size: 18px;
}
