body {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #efffff;
}
.form-container {
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    padding: 5px;
}

.sticky-header {
    background-color: #005;
    color: #fff;
    width:100%;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 10px;
    text-align:left;
    letter-spacing: 3px;
    z-index: 300;
}
.sticky {
    position: sticky;
    margin: 100px 10px 50px 10px;
    overflow: hidden;
}
.grid-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    z-index: 300;
    margin: auto 20px auto 20px;
    grid-template-columns: 30% 50% 20%;
    columns: 3;

}
.content-scroll{
    height:1000px;
    padding:100px 0px 0px 50px;
}
.content-scroll p{
    height:50px;
}
table, th, td {
    border-width: 1px;
    border-collapse: collapse;
}
table {
    width: 100%;
}
td {
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}
.hide-table-padding td {
  padding: 0;
  }

  .expand-button {
    position: relative;
  }

  .accordion-toggle .expand-button:after
  {
    position: absolute;
    left:.75rem;
    top: 50%;
    transform: translate(0, -50%);
    content: '-';
  }
  .accordion-toggle.collapsed .expand-button:after
  {
    content: '+';
  }
.row {
    display: flex;
}
.column {
    flex: 50%;
}

.hiddenRow {
    padding: 0 !important;
}
a:link, visited, active {
    color: #005; 
    background-color: transparent;
    text-decoration: none;
}
a:hover {
    color: pink;
    background-color: Yellow;
}