@font-face {
  font-family: 'Aldrich';
  font-style: normal;
  font-weight: 400;
  src: local(ditm_website_font.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@keyframes fadeIn {
    from{color:rgb(10,10,10);}
    to{color:rgb(200,200,200);}
}

html, body {
    margin:0;
    padding:0;
    height:100%;
}

body {
    background-color: rgb(10,10,10);
    font-family: Ariel, Helvetica, sans-serif;
}

h1 {
    font-family:Aldrich;
    color: rgb(200,200,200);
    text-align: center;
	padding-top: 15px;

    animation-name:fadeIn;
    animation-duration:3s;
    animation-timing-function:ease-out;
}

h2 {
    font-family:Aldrich;
    color: rgb(200,200,200);
    text-align: center;
    margin-bottom: 10px;
}

div.page {
    height:auto;
    margin:auto;
	padding-top: 50px;
    max-width: 100%;
}

div.title {
    position:relative;
    margin:auto;
    max-width: 100%;
}

div.panel {
    float:none;
    padding:0px;
    width:100%;
    height:auto;
    background-color: rgb(10,10,10);
    text-indent: 0px;
    margin: auto;
	
	border: 0px dotted red;
}

p {
    color: rgb(200,200,200);
    text-indent: 0px;
}

p.subt{
    animation-name:fadeIn;
    animation-duration:4s;
    animation-timing-function:ease-in;

    text-align: center;
    padding: 0px;
    text-indent:0px;
	margin-bottom: 10px;
}

p.td{
    animation-name:fadeIn;
    animation-duration:4s;
    animation-timing-function:ease-in;

    text-align: center;
    padding: 0px;
    text-indent:0px;
	margin-bottom: 0px;
}

hr {
    color:rgb(100,100,100);
    padding-top:0px;
	padding-bottom:0px;
}

img {
	pointer-events:none;
	
    display:block;
	margin-left:auto;
	margin-right:auto;
	
    padding-top:0px;
    width:100%;
    height:auto;
    object-fit:cover;
}

table, th, td {
	border: 0px dotted red;
}

th, td {
	padding: 0px;
}

table.center {
	width:100%;
	margin-left: auto;
	margin-right: auto;
}