html, body{
    padding: 0px;
    margin: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1{
  font-size: 1.6em;
}

h1{
  font-size: 1.4em;
}

h1{
  font-size: 1.2em;
}

a{
    color: initial;
}

.container {
    display: grid; 
    grid-template-columns: 200px 1fr; 
    grid-template-rows: 100px 50px 1fr 20px; 
    gap: 0px 0px; 
    grid-template-areas: 
      "header header"
      "top_menu top_menu"
      "left_menu main"
      "footer footer"; 
    width: 100%; 
    height: 100%;
    position: absolute;
  }
  .header {
    grid-area: header; 
    height: 100px; 
  }
  .top_menu { grid-area: top_menu; }
  .main { grid-area: main; padding: 5px 10px; }
  .left_menu { grid-area: left_menu; width: 200px; background-color: #e8e8e8; }
  .footer { grid-area: footer; text-align: center; font-size: 0.6em; background-color: #333; color: #FFF; line-height: 20px; }

.topmenu{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    padding-left: 200px;
}

.topmenu li {
    float: left;
}
  
.topmenu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
  
  /* Change the link color to #111 (black) on hover */
.topmenu li a:hover {
    background-color: #111;
}

.topmenu li a.active {
  background-color: #0090d7;
}

.leftmenu{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.leftmenu li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #111;
}

.leftmenu li a:hover {
  /*background-color: #111;*/
  color: #0090d7;
}

.leftmenu li a.active {
  color: #0090d7;
}

.divTable{
	display: table;
	width: 100%;
}
.divTableRow {
	display: table-row;
}
.divTableRowSelect{
    cursor: pointer;
}
.divTableBody .divTableRowSelect:hover{
    background-color: #0090d7;
    color: #FFF;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}
.divTableCell, .divTableHead {
	border: 1px solid #999999;
	display: table-cell;
	padding: 3px 10px;
}
.divTableCellHeader{
    font-weight: bold;
    background-color: #EEE;
    border: 1px solid #999999;
    display: table-cell;
	padding: 3px 10px;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}

/* ### BUTTON ### */
.btn{
    background-color: #EEE;
    border: 1px solid #999999;
    color: #333;
    text-decoration: none;
    padding: 6px 10px;
    margin: 10px 5px;
    float: left;
}

.btn:hover{
    background-color: #DFDFDF;
    border: 1px solid #999999;
    color: #000000;
}

.btn_right{
    float: right;
}

.btn_blue{
    background-color: #0090d7;
    color: #FFF;
}

.btn_blue:hover{
    background-color: #007DBC;
    color: #FFF;
}

/* ### CHECKBOX ### */
.control {
  font-family: arial;
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  padding-top: 2px;
  cursor: pointer;
  font-size: 16px;
}
  .control input {
      position: absolute;
      z-index: -1;
      opacity: 0;
  }
.control_indicator {
  position: absolute;
  top: 0px;
  left: 0;
  height: 22px;
  width: 22px;
  background: #e6e6e6;
  border: 0px solid #000000;
  border-radius: 0px;
}
.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
  background: #cccccc;
}

.control input:checked ~ .control_indicator {
  background: #0090d7;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
  background-color: #007DBC;
}
.control input:disabled ~ .control_indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control_indicator:after {
  box-sizing: unset;
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control_indicator:after {
  display: block;
}
.control-checkbox .control_indicator:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 11px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
  border-color: #7b7b7b;
}
.control-checkbox .control_indicator::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4.5rem;
  height: 4.5rem;
  margin-left: -1.3rem;
  margin-top: -1.3rem;
  background: #2aa1c0;
  border-radius: 3rem;
  opacity: 0.6;
  z-index: 99999;
  transform: scale(0);
}
@keyframes s-ripple {
  0% {
      transform: scale(0);
  }
  20% {
      transform: scale(1);
  }
  100% {
      opacity: 0;
      transform: scale(1);
  }
}
@keyframes s-ripple-dup {
 0% {
     transform: scale(0);
  }
 30% {
      transform: scale(1);
  }
  60% {
      transform: scale(1);
  }
  100% {
      opacity: 0;
      transform: scale(1);
  }
}
.control-checkbox input + .control_indicator::before {
  animation: s-ripple 250ms ease-out;
}
.control-checkbox input:checked + .control_indicator::before {
  animation-name: s-ripple-dup;
}