* {box-sizing: border-box;}

h1, h2, body {
    font-family: Arial, sans-serif;
    margin: 0;
    text-align: center;
}
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    font-size: 11pt;   
}
th, td {
    text-align: left;
    padding: 4px 6px;
}
td {
    white-space: pre;
    width: 20px;
}
td.wrap {
    white-space: pre-wrap;
    width: auto;
}
table {
    margin: 0 6px;
    float: left;
    clear: left;
}
.form {
    width: 90%;
    max-width: 590px;
    background-color: #fefefe;
    margin: 20px auto; /* 10px from top and bottom and centered */
    border: 1px solid #888;
    border-radius: 5px;
    padding: 8px 16px;
}
.form input[type="text"], .form input[type="password"], .form textarea, .form select, .form input[type="number"] {
    width: 100%;
    padding: 6px 8px 4px 8px;
    margin: 4px 0;
    border-radius: 2px;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 11pt;
    font-weight: normal;
/*    line-height: 1; */
    font-family: "font_light", sans-serif;
}
.form select {
    height:28px;
    background-color: #fff;
}

.form-label {
    margin-top:12px;
    font-weight: bold;
}

.form-login {
    border-radius: 5px;
    background-color: rgb(49,36,43);
    padding: 5px 10px 10px;
    margin: 0 6px 6px 6px;
    width: 290px;
    display: inline-block;
    text-align: center;
}
.form-login input[type="text"], input[type="password"] {
    width: 100%;
    padding: 0 4px;
    margin: 4px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family:Arial, sans-serif;
    font-size: 12pt;
    resize: vertical;
    min-height:30px;
    line-height: 1.3;
}
.form-login input[type="submit"] {
    width: 110px;
    background-color: #ff717e;
    color: white;
    padding: 3px 0 2px 0;
    margin: 8px 0 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family:"font_light", sans-serif;
    font-size: 12pt;
}
.form-login input[type="submit"]:hover {
    color: rgb(49,36,43);
}
.message {color: #FF717e; font-size: 12pt;}

a.white {color:white;text-decoration: none;}
a.white:link {color:white;}
a.white:visited {color:white;}
a.white:hover {color:#ff717e;}

.header {
  overflow: hidden;
  background-color: rgb(49,36,43);
  padding: 2px;
  margin: 0 0 6px 0;
  /*position: fixed;
  top: 0;
  width: 100%;*/
}
/* Header links */
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 4px 8px;
  margin: 4px 6px;
  text-decoration: none;
  font-size: 12pt; 
  line-height: 20px;
  border-radius: 4px;
  background-color: #fff;
}
.header a.logo {
  font-size: 12pt;
  color: #fff;
  background-color: rgb(49,36,43);
}
.header a.logo:hover {
  color: #fff;
  background-color: rgb(49,36,43);
}
.header a:hover {
  background-color: #ddd;
  color: black;
}
.header a.active {
  /*background-color: dodgerblue;*/
  background-color: #ff717e;
  color: white;
}
.header-right {
  float: right;
  background-color: rgb(49,36,43);
}
.button { 
  padding: 6px 8px;
  margin: 4px;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  font-size: 12pt;
  cursor: pointer;  
  color: #fff;
  background-color: #6c5b7b;
}
.button:hover {
  background-color: #ff717e;
}
.button.active {
  background-color: #ff717e;
}
.error {
  color: #ff717e;
  font-size: 12pt;
}
.disabled {
  color: #bbb;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.linkButton { 
  background: none;
  border: none;
  padding: 0;
  color: blue;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

@media screen and (max-width: 450px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}
.dbnav {
    overflow: hidden; /* hide on small screens*/
    background-color: #bbb;
    margin: 0 0 6px 0;
    text-align: left;
}
.dbnav a {
    float: left;
    font-size: 12pt;
    color: white;
    text-align: center;
    padding: 4px 6px;
    text-decoration: none;
}
.dropdown {
    float: left;
/*    overflow: hidden; */
}
.dropdown .dropbtn {
    font-size: 12pt;    
    border: none;
    outline: none;
    color: white;
    padding: 4px 6px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    min-width: 40px;
    text-align: left;
}
/*.dbnav a:hover, */
.dropdown:hover {
    background-color: red;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 40px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1; /* to place the dropdown in front of other elements */
}
.dropdown-content a {
    float: none;
    color: black;
    padding: 4px 6px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: #ddd;
}
.dropdown:hover .dropdown-content {
    display: block;
}