body {font-size: 1.5em;padding: 0;margin: 0;width: 100%;height: 100%;background-color: rgb(242, 242, 242);color: rgb(26, 26, 26);font-family: 'Open Sans', sans-serif;}
body:after {content: "";background-color: rgb(242, 242, 242);top: 0;left: 0;width: 100%;height: 100%;opacity: 0.05;z-index: -1;}
.mycontainer {
  width: 100vw;position: relative;overflow:hidden;padding: 0;margin: 0;
}
.header a:hover {text-decoration: none;}
.box {width: 100%;height: 100%;border: 1px solid rgb(204, 204, 204);background: rgb(242, 242, 242);margin: 0 auto;}  
.hidden {display: none;}
table {width: 100%;max-width: 100%;background:rgb(242, 242, 242);margin: 0 auto;}
table td {border-bottom: 2px solid rgb(204, 204, 204);}
table thead th {border-bottom: 0px solid rgb(204, 204, 204);}
.stable  { border-spacing: 1; border-collapse: collapse; background:  rgb(242, 242, 242);border-radius:6px;max-width:100%; width:100%;margin:0 auto;text-align: center;}
.stable thead tr  { background:  rgb(204, 204, 204);font-size:18px;color:rgb(223, 32, 32);}  
.stable tbody tr  { height:20px;letter-spacing: 2px; border-bottom:1px solid rgb(204, 204, 204);color:rgb(77, 77, 77);}
.row {margin-left: 0px;margin-right: 0px;}
.t_center {text-align: center;}
.t_left {text-align: left;}
.t_right {text-align: right;}
#changeText {
  opacity: 1;
  transition: opacity 0.5s;
}
.hide {
  opacity: 0 !important;
}
.marquee {
  width: 100%;
  overflow: hidden;
  color: rgb(38, 38, 38);
  background-color: rgb(242, 242, 242);
  background-image: linear-gradient(180deg, rgb(204, 204, 204), rgb(242, 242, 242));
}
.clearfix {
  overflow: auto;
  zoom: 1;
}

.doi {
    animation: colorchange 2s infinite;
    -webkit-animation: colorchange 2s infinite;
    color: white !important
}

@keyframes colorchange {
    0% {
        background: green;
    }

    30% {
        background: red;
    }

    60% {
        background: green;
    }

    100% {
        background: red;
    }
}

@-webkit-keyframes colorchange {
    0% {
        background: green;
    }

    30% {
        background: red;
    }

    60% {
        background: green;
    }

    100% {
        background: red;
    }
}