* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}


/* Button Link Style */
.button {
    background-color: #0a3071;
    border: none;
    color: white;
    padding: 20px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 4px 2px;
    cursor: pointer;
}

.button:hover {
  background-color: #4d84e1;
  color: black;
}

/* input button style */

.input {
    background-color: #0a3071;
    color: white;
    padding: 10px 21px;
    border: 2px solid lightgrey;
    text-align: center;
    text-decoration: none;
/*    display: inline-block; */
    border-radius: 10px;
    box-shadow: 9px 9px 5px grey;
}

.input:hover {
    background-color: #4d84e1;
    color: black;
    box-shadow: 5px 5px 2px black;
}

/* page link style */

.link a {
    background-color: #0a3071;
    border: 2px solid lightgrey;
    color: white;
    padding: 10px 21px;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 9px 9px 5px grey;
}

.link a:hover {
    background-color: #4d84e1;
    color: black;
    box-shadow: 5px 5px 2px black;
}

/* Style the top navigation bar */

.topnav {
  position: fixed;
  overflow: hidden;
  background-color: #0a3071;
  padding: 15px;
  width: 100%;
  height: 100px;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  padding: 20px 20px;
  text-align: center;
  text-decoration: none;
  font-weight:bold;
  font-size: 18px;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
  padding: 20px 20px;
}

/* Columns */
.column {
  float: left;
  display: block;
  padding: 90px 80px;
  width: 33.33%;
}

.column2 {
  float: left;
  display: block;
  padding: 90px 80px;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.tblcolumn {
  float: left;
  display: block;
  padding: 10px 10px;
  width: auto;
}

/* Clear floats after the columns */
.tblrow:after {
  content: "";
  display: table;
  clear: both;
}

.fonts {
   font-family: Arial, Helvetica;
   font-size: 14px;
}

/* Tables */
table {
  border-collapse: collapse;
  vertical-align: top;
}

table.list {
  width: 100%;
}

table.list tr td {
  border: 1px solid #0a3071;
  padding: 5px;
}

table.list tr th {
  border: 1px solid #0a3071;
  background: #0a3071;
  color: white;
  text-align: left;
  padding: 5px;
}

/* Style the content */
.content {
  background-color: #ddd;
  padding: 30px 30px;
  min-height: 400px;
}

/* Style the footer */
.footer {
  background-color: #0a3071;
  padding: 10px;
  color: #f2f2f2;
}

/* Actions */

.actions {
  margin-bottom: 1em;
  background-color: #ddd;
}

/* Forms */

dl {
  clear: both;
  overflow: hidden;
  margin: 0.5em 0;
}

dt {
  float: left;
  font-weight: bold;
  width: 200px;
}

dd {
  float: left;
  margin-left: 1em;
}

#operations {
  clear: both;
  margin: 1em 0 1em 75px;
}

/* Errors */

.errors {
  display: inline-block;
  border: 2px solid red;
  color: red;
  padding: 1em;
  margin-bottom: 1em;
}

.errors ul {
  margin-bottom: 0;
  padding-left: 1em;
}

#message {
  color: #0055DD;
  background: white;
  border: 2px solid #0055DD;
  padding: 1em 15px;
  margin: 1em 30px;
  width: 890px;
}