body{
	background-color:#C6C6C6;
        font-size: 14px;
        font-family: Times New Roman, serif;
}
a {
  text-decoration: underline;
}
a:link {
  text-decoration: underline;
}

a:visited {
  color: #110B84;
  text-decoration: underline;
}

a:hover {
  color: #110B84;
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul > li {
    display: inline-block;
    padding-right:10px;
}





/* Table Structure */
table.containertable {
  border-top-color: white;
  border-bottom-color: black;
  border-left-color: white;
  border-right-color: black;
  width: 100%;
}
table, th, td{
  border-width: 2px;
  border-top-color: black;
  border-bottom-color: white;
  border-left-color: black;
  border-right-color: white;
}
td{
  padding:10px;
}
.headerimg{
	width:100%;
	max-width:60%;
	text-align:center;
}

/* marquee cheat */
.marqueecontainer{
  position:relative;
}
.marquee {
  border: 2px none ;
  margin-bottom:10px;
  display: flex ;
  overflow: hidden ;
  white-space: nowrap ;
  width: 100% ;
  position: absolute;
  left:0px;
}
.marquee b{
  color:red;
}
.marquee__item {
  animation-duration: 20s ;
  animation-iteration-count: infinite ;
  animation-name: marquee-content ;
  animation-timing-function: linear ;
  padding: 5px 15px 5px 15px ;
}
  .marquee:hover .marquee__item {
    animation-play-state: paused ;
}

@keyframes marquee-content {
  from {
    transform: translateX( 100% );
  }
  to {
    transform: translateX( -100% );
  }

