html {
  background-image: url("../image/background.png");
  background-repeat: repeat;
}

body {
  color: white;
  font-family: Helvetica, sans-serif;
  padding: 0;
  min-height: 600px;
  margin: 0;
}

.menubar {
  background: #003545;
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
}
.menubar .company {
  position: relative;
  top: 25%;
  left: 10px;
}
.menubar .bigger {
  font-size: 1.4em;
  margin: 0 10px 0 25px;
}
.menubar a {
  text-decoration: none;
  color: white;
  margin: 0 10px;
  padding: 5px 10px 5px;
  border-radius: 20px;
}
.menubar a:hover {
  background: white;
  color: #003545;
}

.footer {
  background: #003545;
  text-align: center;
  font-size: smaller;
  width: 100%;
  padding: 5px;
  position: fixed;
  bottom: 0;
  left: 0;
}

.container {
  display: flex;
  justify-content: left;
  margin-left: 20px;
}

.content {
  background-color: transparent;
  padding-top: 50px;
  padding-bottom: 30px;
}

table {
  background-color: #005668;
  box-shadow: 0 0 15px 5px #005668;
  overflow: hidden;
}

th {
  background-color: #003545;
  color: white;
  padding: 5px 10px;
}

tr {
  color: #003545;
}
tr:nth-child(even) {
  background-color: #ddd;
}
tr:nth-child(odd) {
  background-color: #fff;
}
tr:hover {
  cursor: pointer;
  color: white;
  background-color: #003545;
}

td {
  padding: 5px 10px;
  padding-bottom: 2px;
}

.editButton {
  background-image: url("../image/edit.png");
  background-repeat: no-repeat;
}
.editButton:active {
  background-image: url("../image/editInverted.png");
}

.deleteButton {
  background-image: url("../image/delete.png");
  background-repeat: no-repeat;
}
.deleteButton:active {
  background-image: url("../image/deleteInverted.png");
}

.closeButton {
  background-image: url("../image/close.png");
  background-repeat: no-repeat;
  float: right;
  padding: 4px 4px 0 0;
  cursor: pointer;
}
.closeButton:active {
  background-image: url("../image/closeInverted.png");
}

.newButton {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 10px;
  margin-left: 20px;
  padding: 2px 15px;
  border: 2px solid #003545;
  background: white;
  color: #003545;
  border-radius: 30px;
  cursor: pointer;
}
.newButton:active {
  background: #208020;
  color: white;
}

.popupWindow {
  position: fixed;
  background: white;
  border: 1px solid #003545;
  box-shadow: 0 0 50px 10px #003545;
}
.popupWindow .windowTitle {
  background: #003545;
  color: white;
  font-size: 1.2em;
  padding: 4px 0 0 4px;
  height: 27px;
  border: 1px solid white;
  cursor: move;
}

.hidden {
  display: none;
}

.w500p {
  width: 500px;
}

.w100p {
  width: 100px;
}

input, select {
  border: 1px solid #003545;
  color: #003545;
  font-size: 1em;
  padding: 3px 8px;
}
input:focus, select:focus {
  outline: none;
  box-shadow: 0 0 10px #003545;
  border: 1px solid #003545;
}

input[type=checkbox] {
  border: 1px solid #003545;
  color: #003545;
  font-size: 1.5em;
  padding: 3px 8px;
}
input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 10px #003545;
  border: 1px solid #003545;
}

.Commands {
  text-align: right;
  padding-right: 15px;
  padding-bottom: 10px;
}

button {
  font-size: 1.3em;
  font-weight: bold;
  margin: 5px;
  padding: 2px 15px;
  border-radius: 30px;
  cursor: pointer;
}
button:focus {
  outline: none;
  box-shadow: 0 0 10px #003545;
}

.SaveButton {
  border: 2px solid #003545;
  background: #003545;
  color: white;
}
.SaveButton:active {
  background: #208020;
}

.CancelButton {
  border: 2px solid #003545;
  background: white;
  color: #003545;
}
.CancelButton:active {
  background: #208020;
}

/*# sourceMappingURL=base.css.map */
