﻿body {
  border-left: 4px solid #f9f9f9;
  border-right: 4px solid #f9f9f9;
  padding: 1rem 2rem;
  //padding-left: 0em;//
  font-family: Georgia, "Times New Roman",
        Times, serif;
  color: #c4b190;
  background-color: #c4b190;
  // background-image: url(Cream.gif);//
  background-repeat: repeat;}
ul.navbar {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: .5em;
  left: .5em;
  width: .5em }
  th {text-align: left}
h1,h2,h3 { font: 24pt bold sans-serif; color: #003366;
  }
h3 { font-size: 9pt; }
h4 {color: #003366; font-size 12pt}
h5 { color: #003366; font-size: .7em}
h6 {font-family: "helvetica"; font-size: 14px; color:#003366; }
ul.navbar li {
  background: white;
  margin: 0.5em 0;
  padding: 0.3em;
  border-right: 1em solid black }
ul.navbar a {
  text-decoration: none }
a:link {
  color: blue }
a:visited {
  color: purple }
a:hover { text-decoration: underline; }
address {
  margin-top: 1em;
  padding-top: 1em;
  border-top: thin dotted }
  img {     
        max-width: 100%; 
        }
        
.CenterMe {
     height:163
     display:flex;
     align-items:center;
     justify-content:center;
     }
     

		
.container {
    display: grid;
    grid: repeat(4, 365px) / repeat(4, 200px);
}

[class*="child"] {
    border: 2px dashed orange;
}

.parent {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 4;
}


