#banner{
    background-color: white;
    height: 100px;
    vertical-align: middle
}

#container{
    height:100%;
    min-height:100%;
    width: 700px;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
    margin: auto;
    margin-top: -20px;
    padding-bottom: 200px;
    background-color: white;
    text-align:justify;
    display:table;
}

#wide-container{
    height:100%;
    min-height:100%;
    width: 1000px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    margin: auto;
    margin-top: -20px;
    padding-bottom: 200px;
    background-color: white;
    display:table;
}

#banner{
    background-color: white;
    margin: auto;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

body {
    height:100%;
    background-image: url("img/dot-grid.png");
}

* {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    }

b {font-weight: 1000}

h1 {
    background-color: white;

}

html {
    height:100%;
}

@media (min-width: 768px){
    .navbar-nav{
        float:none;
        margin: 0 auto;
        display: table;
        table-layout: fixed;
    }
}


/* Style the element that is used to open and close the accordion class */
p.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-bottom:10px;
}

/* Add a background color to the accordion if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
p.accordion.active, p.accordion:hover {
    background-color: #ddd;
}

/* Unicode character for "plus" sign (+) */
p.accordion:after {
    content: '\2795';
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

/* Unicode character for "minus" sign (-) */
p.accordion.active:after {
    content: "\2796";
}

/* Style the element that is used for the panel class */

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    opacity: 0;
    margin-bottom:10px;
}

div.panel.show {
    opacity: 1;
    max-height: 4000px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes)
    */
}

#more {display: none;}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

#footer {
  position: fixed;
  bottom: 0;
  opacity: 0.75;
  height: 20px;
  width: 100%;
  background-color: #000000;
}