html {
-webkit-font-smoothing: antialiased;
}

object {
outline:none;
}

br {
line-height:20px;
height:20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #ddd;

opacity: 0;
animation-name: fadeIn;
animation-delay: 1.0s;
animation-duration: 0.5s; /* 3-second duration for the fade */
animation-timing-function: ease-in-out; /* Use a smooth acceleration */
animation-fill-mode: forwards; 
    
}

body,td,th {
vertical-align: top;
font-family: Helvetica, Arial, sans-serif;
font-size: 16px;
text-align:left;
color: #222222;
line-height: 20px;
word-spacing:1px;
}

a:link {
text-decoration: none;
color: #333333;
border-color: #f3f3f3;
word-spacing:1px;
line-height: 20px;
outline:none;
}

a:visited {
text-decoration: none;
color: #333333;
border-color: #f3f3f3;
word-spacing:1px;
line-height: 20px;
outline:none;
}

a:hover {
text-decoration: none;
color: #481200;
border-color: #481200;
word-spacing:1px;
line-height: 20px;
outline:none;
}

a:active {
text-decoration: none;
color: #333333;
border-color: #f3f3f3;
word-spacing:1px;
line-height: 20px;
outline:none;
}

a:link img {
border-color: #f3f3f3;
outline:none;
}

a:visited img {
border-color: #f3f3f3;
outline:none;
}

a:hover img {
border-color: #f3f3f3;
outline:none;
}

a:active img {
border-color: #f3f3f3;
outline:none;
}

.center {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
