  body  { font-size:20px; }
  td    { font-size:20px; height:35px; text-align:left;  border:0px solid #556677;  }
  input[type="text"]   { font-size:20px;  height:35px; text-align:center; width:230px;  padding:3px; }
  input[type="submit"] { font-size:20px;  height:28px; width:58px; }
  input[type="button"] { font-size:20px;  height:28px; width:58px; }
  input[type="select"] { font-size:20px;  height:28px; width:58px; }
  input[type="file"]   { font-size:15px;  width:150px;     background-color:#99aaff;  border:solid 1px #3344ff; }
  textarea             { font-size:15px; }
  img   {  image-orientation: from-image;   }  /* transform: rotate(0deg);*/
  a:link, a:visited {
    color  : #3344bb;
    text-align  : center;      text-decoration: none;      vertical-align: middle;
    font-size:21px;
  }
  a:hover, a:active {
    background-color: #66aa77;    color: white;
    font-size:21px;
  }

/* input[type=checkbox] {
 -ms-transform: scale(2); 
 -moz-transform: scale(2); 
 -webkit-transform: scale(2); 
 -o-transform: scale(2); 
  padding: 10px;
} */



/* The container */
.checkbox_container {
  display: block;      position: relative;   font-size: 20px;
  padding-left: 35px;  margin-bottom: 12px;  cursor: pointer;
  padding-top : 5px;   text-align:left;
  /* -webkit-user-select: none;    -moz-user-select: none;    -ms-user-select: none;    user-select: none; */
}

/* Hide the browser's default checkbox */
.checkbox_container input {
  position: absolute;     opacity: 0;     cursor: pointer;     height: 0;     width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;     top: 3;     left: 0;     height: 25px;     width: 25px;
  background-color: #ffffff;          border: 1px solid #2196F3;
}

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

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

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";     position: absolute;     display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
  left: 9px;     top: 5px;     width: 5px;      height: 10px;
  border: solid white;         border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);    -ms-transform: rotate(45deg);      transform: rotate(45deg);
}

  @supports (-webkit-overflow-scrolling: touch) {
    /* CSS specific to iOS devices .  only Safari Mobile implements -webkit-overflow-scrolling */ 
  }
  @supports not (-webkit-overflow-scrolling: touch) {
    /* CSS for other than iOS devices */ 
  }
