* {
  box-sizing: border-box;
}
/*main {
  display: flex;
  flex-direction: column;
  padding: 1em;
  align-items: center;
}
*/
/* Style the header */
.header {
  background-color: transparent;
  padding: 10px;
  text-align: center;
}
/* Create three unequal columns that floats next to each other */
/*
footer {
  background-color: grey;
  padding: 20px;
  text-align: center;
}
*/
.column {
  float: left;
  padding: 10px;
}

/* Left and right column */
.column.side {
    width: 20%;
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

#gbrclogo {
    align-items: center;
    display: inline-table;
    float: left;
    margin-left: 1%;
    margin-right: 1%;
    padding-left: 1%;
    padding-right: 1%;
    width: 15%;
    margin-top: 1%;
    margin-bottom: 1%;
	}
#mainhead {
    display: inline-table;
    float: left;
    text-align: center;
    width: 60%;
    margin-left: 1%;
    margin-right: 1%;
}
#dstlogo {
    display: inline-table;
    float: right;
    width: 15%;
    margin-left: 1%;
    margin-right: 1%;
    padding-left: 1%;
    padding-right: 1%;
    margin-top: 1%;
    margin-bottom: 1%;
}
img {
    display: inline-block;
    text-align: center;
}

#gbrc {
    padding-top: 2.5%;
}

#pad {
    padding-left: 8%;
    
}
/* Middle column */
.column.middle {
  width: 50%;
    text-align: center;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}
body {
  font-family: Arial;
  padding: 10px;
  background: #f1f1f1;
}
/*
.table-wrapper {
  overflow: auto;
  max-width: 100%;
  background: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0)),
    linear-gradient(to right, rgba(255, 255, 255, 0), white 70%) 0 100%,
    radial-gradient(
      farthest-side at 0% 50%,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
        farthest-side at 100% 50%,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0)
      )
      0 100%;
  background-repeat: no-repeat;
  background-color: white;
  background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
  background-position: 0 0, 100%, 0 0, 100%;
  background-attachment: local, local, scroll, scroll;
}

tr {
  border-bottom: 1px solid;
}

th {
  background-color: #555;
  color: #fff;
  white-space: nowrap;
  cursor: grab;
}
*/
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
th,
td {
  padding: 6px 15px;
}
th {
  background: #42444e;
  color: #fff;
  text-align: left;
}
tr:first-child th:first-child {
  border-top-left-radius: 6px;
}
tr:first-child th:last-child {
  border-top-right-radius: 6px;
}
td {
  border-right: 1px solid #c6c9cc;
  border-bottom: 1px solid #c6c9cc;
}
td:first-child {
  border-left: 1px solid #c6c9cc;
}
tr:nth-child(even) td {
  background: #eaeaed;
}
tr:last-child td:first-child {
  border-bottom-left-radius: 6px;
}
tr:last-child td:last-child {
  border-bottom-right-radius: 6px;
}

th,td {
  text-align: center;
  padding: 0.5em 1em;
}

.active {
  font-style: italic;
}

.asc::after {
  font-style: normal;
  content: "\25B4";
  margin-left: 0.5em;
}

.desc::after {
  font-style: normal;
  content: "\25BE";
  margin-left: 0.5em;
}
/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #666666;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
.topnav a:visited {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #666666;
    color: #159C9A;
    font-family: verdana;
    border-width: thin;
    border-color: #ff6633;
}
.topnav a:focus {
    background-color: #666666;
    color: #159C9A;
    font-family: verdana;
    border-width: thin;
    border-color: #ff6633;
}
.topnav a:active {
    background: #10976F;
    color: #666666;
    font-family: verdana;
    border-width: thin;
    border-color: #ff6633;
}

a {
    background-color: transparent;
    color: #00af9b;
}
a:visited {
    color: #10976F;
}


/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 75%;
}

.centercolumn {
  float: left;
  width: 100%;
  background-color: whitesmoke;
}
/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background-color: #f1f1f1;
  padding-left: 20px;
}


/* Fake image */
.fakeimg {
  background-color: #666666;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: whitesmoke;
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  width: 100%;
  padding: 5px;
  text-align: left;
  overflow: hidden;
  background-color: #666666;
/*      background: #ff6633;*/
  margin-top: 5px;
}
#copyright {
    font-size: 12px;
}
#rcorners1 {
  border-radius: 15px;
  background: #ddd;
  border: 2px solid #555555;
  }
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}

#counter-left {
    margin:5px, 5px, 5px, 5px;
    padding: 10px, 5px, 5px, 5px;
    float: left;
}

#counter-right {
    margin:15px, 5px, 5px, 5px;
    padding: 10px, 5px, 5px, 5px;
    float: right;
}
