.twoCol_Forced {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
  /* align-items: center;*/
  align-items: start; /* changed so columns align at top instead of middle, 20240927 dka */
  justify-items: center;
	grid-gap:5px;
}
.threeCol_Forced {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  width: 100%;
  /* align-items: center;*/
  align-items: start; /* changed so columns align at top instead of middle, 20240927 dka */
  justify-items: center;
	grid-gap:5px;
}
.fourCol_Forced {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  width: 100%;
  /* align-items: center;*/
  align-items: start; /* changed so columns align at top instead of middle, 20240927 dka */
  justify-items: center;
	grid-gap:5px;
}

@media only screen and (max-width: 1100px) {
  .fourCol_Forced {
    grid-template-columns: 50% 50%;
  }
}
@media only screen and (max-width: 768px) {
  .twoCol_Forced,
  .threeCol_Forced,
  .fourCol_Forced {
    grid-template-columns: 100%;
  }
}
