h3,h4,p,ul,ol,li,div,td,th,address,blockquote,nobr,b,i {
	color:#ffffff; font-family:Arial,sans-serif; }
h1 { color:#ffffff; font-weight:normal; font-family:Arial,sans-serif; size:6; }
h2 { color:#ffffff; font-weight:normal; font-family:Arial,sans-serif; size:5; }
h3 { color:#ffffff; font-weight:normal; font-family:Arial,sans-serif; size:4; }
h4 { color:#ffffff; font-weight:normal; font-family:Arial,sans-serif; size:3; }
* { background-color:#000000; }
text { color:#004000; size:3; }
a:link { color:#ffffff; size:3; text-decoration:none; }
a:visited { color:#ffffff; size:3; text-decoration:none; }
a:active { color:#ff0000; size:3; text-decoration:none; }

* {
  box-sizing: border-box;
}

div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
  width: calc(33% - 20px);
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item table {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  div.gallery-item {
    width: calc(50% - 20px);
  }
}

@media only screen and (max-width: 480px) {
  div.gallery-item {
    width: calc(100% - 20px);
  }
}

