@charset "utf-8";
/* CSS Document */
.bottom {	
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.bottom .left { grid-area: 1 / 1 / 2 / 3; }
.bottom .right { grid-area: 1 / 3 / 2 / 4; }
.bottom .disclaimer {grid-area: 2 / 1 / 3 / 4;}

.bottom {		
  border-top: 5px solid aliceblue;
  padding-top: 20px;
  padding-bottom: 10px;	
  font-family: "Neuvetica-Medium", Helvetica, Arial, "sans-serif";	
  display: block;	
}

table {width: 100%}
td {width:33.3%; vertical-align: middle}

.left p, .right p {
  padding-bottom: 10px;
  font-family: "Neuvetica-Thin", Helvetica, Arial, "sans-serif";
  font-size: 16px;
  color: lightgrey;
	text-align: center
}

.middle img { 
  width: 50%; 
  display: block;
  margin-left: auto;
  margin-right: auto
}

.middle {
  text-align: center;
  font-family: "Neuvetica-Thin", Helvetica, Arial, "sans-serif";
  font-size: 12px;
  color: lightgrey;		
}
 
.middle p {padding-bottom: 10px}

.middle a:link { color: lightgrey; text-decoration: none }
.middle a:visited { color: lightgrey; text-decoration: none }
.middle a:hover { color: lightgrey; text-decoration: none }
.middle a:active { color: lightgrey; text-decoration: none }

