body {
    font-family: Arial,Verdana,Helvetica;
    background-color: #eeeeee;
}

div.header {
    position: fixed;
    top: 70px;
    left: 100px;
    width: 1024px;
    height: 20px;
    text-align:center
    font-family:Arial, Helvetica, sans-serif;
    font-size: 10pt;
}

div.banner {
    position: fixed;
    top: 0px;
    left: 10px;
    width: 1218px;
    height: 90px;
    text-align:center;
    background-color: lightgrey;
}

div.left_column {
    position: fixed;
    top: 87px;
    left: 10px;
    width: 90px;
    height: 773px;
    font-family:Arial, Helvetica, sans-serif;font-size: 10pt;
    background-color: lightgrey;
}

#center_column {
    position: absolute;
    top: 90px;
    left: 120px;
    width: 984px;
    height: 768px;
    background-color: #eeeeee;
}

div.right_column {
    position: fixed;
    top: 87px;
    left: 1124px;
    width: 103px;
    height: 773px;
    background-color: lightgrey;
}

div.footer {
    position: fixed;
    top: 858px;
    left: 10px;
    width: 1218px;
    height: 80px;
    background-color: lightgrey;
    /* border: 1px solid red; */
}

#l0pointHelveticaCenter {
    text-align:center;
    text-decoration: none;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 10pt
}

.grid-container_header {
    display: grid;
    grid-template-columns: 130px 180px 130px 130px 130px 130px 130px 130px 130px;
    grid-row-gap: 10px;
}

.grid-container_footer {
    display: grid;
    grid-template-columns: 430px 140px 150px 130px 130px 130px 130px 130px 130px;
    grid-row-gap: 10px;
}

.grid-container_copyright {
    display: grid;
    grid-template-columns: 230px 130px 530px 130px 130px 130px 130px;
    grid-row-gap: 10px;
}

.item2 {
    grid-column-start: 2;
    grid-column-end: 3;
}

.item3 {
    grid-column-start: 3;
    grid-column-end: 4;
}

.item4 {
    grid-column-start: 4;
    grid-column-end: 5;
}

#sliver {
    position: fixed;
    top: 853px;
    width: 1024px;
    height: 5px;
    left: 100px;
    background-color: #eeeeee
}

#basement {
    position: fixed;
    top: 938px;
    width: 1218px;
    height: 2000px;
    left: 10px;
    background-color: #eeeeee
}

pre {
  color: #000000;
}

a:hover {
    text-decoration: underline;
    color: white;
    /* background-color: #ff0000; */
}

a:visited {
    color: purple;
}

a:active {
    color: yellow;
}

a:link {
    color: #0000ff;
    text-decoration: none;
}

a.imgLink:hover {
    text-decoration: underline;
    color: #ffffff;
    background-color: #ffffff;
}

.grid-container2 {
    display: inline-grid;
    grid-column-gap: 50px;
}

.item1 {
    grid-column-start: 1;
    grid-column-end: 2;
}

.item5 {
    grid-column-start: 5;
    grid-column-end: 6;
}


