<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body
	{
		color:white;
		background-color:black;
		font-size: 30px;
		font-weight: bold;
		font-family: "Times New Roman", Georgia, Serif;

	}
	img {
	  width: 100%;
	  height: auto;
	}
	/* unvisited link */
	a:link {
		color: white;
	}

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

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

	/* selected link */
	a:active {
		color: white;
	}
    .Table
    {
        display: table;
		width:100%;
		margin-left: auto;
		margin-right: auto;
		text-align:center;
		padding: 10px 0px 20px 0px;
    }
    .Title
    {
		vertical-align:middle;
        text-align: center;
        font-weight: bold;
    }
    .Heading
    {

        font-weight: bold;
        text-align: center;

    }
    .Heading2
    {
        display: table-cell;
		vertical-align:middle;
		text-align:center;
		font-weight: bold;
        text-align: center;
		font-size:30px;
		height:40px;

    }
	
    .Link
    {	
		text-decoration:none;
		font-size:24px;
		font-weight:bold;
		text-align:center;
	}
    .Row
    {
        display: table-row;
    }
    .Cell
    {
        display: table-cell;
		vertical-align:middle;
		text-align:center;
		padding: 5px 5px 5px 5px;
		
    }
    .Cell2
    {
        display: table-cell;
		vertical-align:middle;
		text-align:center;
		padding: 5px 5px 5px 5px;
		
    }
    .Picture
    {
        border: 1px solid;
		max-width: 749px;
		max-height: 749px;
		
    }
.gallery {
  display: grid;
  grid-template-columns: repeat(6, auto);
  grid-gap: 10px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 2560px) {
  .gallery {
    grid-template-columns: repeat(5, auto);
  }
}
@media screen and (max-width: 2048px) {
  .gallery {
    grid-template-columns: repeat(4, auto);
  }
}
@media screen and (max-width: 1536px) {
  .gallery {
    grid-template-columns: repeat(3, auto);
  }
}
@media screen and (max-width: 512px) {
  .gallery {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (max-width: 256px) {
  .gallery {
    grid-template-columns: repeat(1, auto);
  }
}
/* (B) THUMBNAILS */
.gallery img {
  width: 100%;
  max-width: 749px;
  max-height: 749px;
  height: 100%;
  cursor: pointer;
  /* FILL, CONTAIN, COVER, SCALE-DOWN : USE WHICHEVER YOU LIKE */
  object-fit: cover;
}
.gallery img:fullscreen { object-fit: contain; }

/* (X) DOES NOT MATTER */
body, html {
  padding: 0;
  margin: 0;
}
.container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
}
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.navigation-cell {
  width: 25%;
  display: inline-block;
  padding: 10px 0px 10px 0px;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
	
	body{
		font-size: 20px;
	}
	
}

@media screen and (max-width: 768px) {
 .navigation-cell {
   width: 33%;
   }
}

@media screen and (max-width: 512px) {
 .navigation-cell {
   width: 50%;
   }
}

@media screen and (max-width: 384px) {
 .navigation-cell {
   width: 100%;
   }
}

.navigation-links-table {
	
  display: table;
  width:100%;
  margin-left: auto;
  margin-right: auto;
  text-align:center;
  #height: 100px;
  #border: 1px solid black;
  
}

video {
    width: 100%;
	height: auto;
    max-height: 1000px;
}</pre></body></html>