
body {
  margin: 20px;/*40px;*/
  font-family: 'Open Sans', 'sans-serif';
  background-color: #dac87e;
  color: #444; /*black*/
}

h1, p {
  margin: 0 0 0 0;
}

a:link{
  text-decoration: none;
  color:blue;
  height: 2em;
}

a:visited{
  text-decoration: none;
  color:blue;
  height: 2em;
}


h5,h3,h4 {
	margin: 0 0 0 0;
}




/* no grid support? */
.sidebar {
	
	
  /*border-radius: 5px;*/
  background-color: #D3D3D3;
  /* float: left; */
  /*max-width: 256px;*/  /*19.1489%;*/
 
 
 }

.content {
	
  background-color: #FFFFCC;
  /* float: right;
  /* width: 79.7872%; */
}

/* make a grid */
.wrapper {
  max-width: /*1860px;*//*940px;*/
  margin: 0 auto;
  display: grid;
  grid-template-columns: 172px 1fr;
  grid-gap: 10px;
}

.wrapper > * {
  /*background-color: #FFFFCC;*/  /*gray*/ /*was - #444 Black*/
  color: #444; /*black*/ /*was - #fff;white */
  border-radius: 10px;
  padding: 5px;
  font-size: 125%; */
  /* needed for the floated layout*/
  margin-bottom: 10px;
}

.header {
	box-sizing: border-box;
/*  border-radius: 5px; */
  grid-column: 1 / -1;
  background-color: #ADD8E6;
  height:7em;
/*  padding: 20px; */

  /* needed for the floated layout */
  /*clear: both;*/
} 

.footer {
	box-sizing: border-box;
/*  border-radius: 5px; */
  grid-column: 1 / -1;
  background-color: #ADD8E6;
    height:7em;

/*  padding: 20px; */

  /* needed for the floated layout */
  /*clear: both;*/
}


/* We need to set the widths used on floated items back to auto, and remove the bottom margin as when we have grid we have gaps. */
@supports (display: grid) {
  .wrapper > * {
    width: auto;
    margin: 0;
  }
}

