
body{
    background-color: #eaeaea;
    font: 16px Arial;
    

}


html {
  overflow-y: scroll;
}

.text{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}
table {
    width: 80%;
   margin-left:auto;
   margin-right: auto;
    border-collapse: collapse;
    border-radius: 5px;
}

#intro{
    text-align: center;
}
#sdlt{
    text-align: justify;
}
th{
    height: 50px;
   background-color: #a81c1c;
  color: white;
}
th, td{
   padding-left: 7px;
    padding-right: 7px;
   padding-top: 15px;
    padding-bottom: 15px;
}
tr:nth-child(even) {background-color: #f2f2f2;}
tr:nth-child(odd) {background-color: #f9f9f9;}
#disclaimer{
    text-align: center;
    
    float: left;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
    width: 90%;
    box-sizing: border-box;
}
.header{
    text-align: center;
    color: #555555;
}
.body{
    margin-left: auto;
    margin-right: auto;
    color: #555555;
    width: 90%;
    box-sizing: border-box;
}
.button {
  font: bold 16px Arial;
  text-decoration: none;
  background-color: #a81c1c;
  color: #f9f9f9;
  padding: 10px 14px 10px 14px;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #CCCCCC;
  cursor: pointer;
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  -webkit-appearance:none;
  -moz-appearance:none;
  text-align: center;
  border-radius: 5px;
}
input[type=submit]:hover{
    background-color: #c0c0c0;
    color: #4c4c4c;
}
input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font: 16px Arial;
}

a{
    text-decoration:none; 
}
.left, .right {
  float: left;
  width: 20%; /* The width is 20%, by default */
}


.main {
  float: left;
  width: 60%; /* The width is 60%, by default */
   
    background-color: #ffffff;
    height: 100%;
    border-radius: 5px;
    
}
@media screen and (max-width: 800px) {
  .left, .main, .right {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }
}
.container {
  
  position: relative;
  padding-left: 100px;
  margin-bottom: 100px;
  
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 200px;
  background-color: #eee;
  border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */


/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}
.error{
    color: red;
    font-weight: bold;
}
