table {
  
  border: 1px solid black;
  text-align: left;
  width: 100%;
}

th {
  padding: 15px;
  text-align: left;
  background-color: #f2f2f2;
}

td {
  padding: 15px;
  text-align: left;
}

.center {
  margin: auto;
  width: 60%;
  padding: 10px;
}

.center_sm {
  margin: auto;
  width: 22%;
  padding: 10px;
}

#background {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/grim-reaper-icon-4.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 65%;
    background-position: center;
    opacity: 0.04;
    filter:alpha(opacity=80);
}

#wrap{
    background: #FFFFFF; /* Set content background to white */
    width: 615px; /* Set the width of our content area */
    margin: 0 auto; /* Center our content in our browser */
    margin-top: 50px; /* Margin top to make some space between the header and the content */
    padding: 10px; /* Padding to make some more space for our text */
    border: 1px solid #DFDFDF; /* Small border for the finishing touch */
    text-align: center; /* Center our content text */
}

.statusmsg{
    font-size: 12px; /* Set message font size  */
    padding: 3px; /* Some padding to make some more space for our text  */
    background: #EDEDED; /* Add a background color to our status message   */
    border: 1px solid #DFDFDF; /* Add a border arround our status message   */
    text-align: center; /* Center our content text */
    margin: 0 auto; /* Center our content in our browser */
}

/* Dropdown Button */
.dropbtn {
  background-color: #455456;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #8d8d8d;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #b4b4b4;}