     
* {
  box-sizing: border-box;  margin: 0;
}

body {
  font-family: Cambria, Helvetica, sans-serif;
  background-color: #777777;
}

img {
        max-width: 100%;
        height: auto;
      }

/* The pages should fit the browser window */
html, body {
  height: 100%;
}   
container#maincontent {
  min-height: 100%;
  height: auto !important;
  height: 100%;           
   
}

#pushbottom {
  height: 1px;
}

/* Style the header */
header {
  background-color: #7a9bbc;
  padding: 8px;
  text-align: center;
  font-size: 35px;
  color: white;
}

/* Create two columns/boxes that floats next to each other */
da_nav {
  float: left;
  width: 20%;
  background-color: #7a9bbc;
  padding: 20px;
} 


/* Style the list inside the menu */
da_nav ul {
  list-style-type: none;
  padding: 0;
}

li.leftmenu {
  font-size: 11pt;
  
}

h1.leftmenu {
  font-size: 12pt;
 
}

article {
  float: left;
  padding: 20px;
  width: 80%;
  background-color: #f1f1f1;
}

/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  background-color: #6b6b6b;
  padding: 10px;
  text-align: center;
  color: white;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 700px) {
  da_nav, article {
    width: 100%;
    height: auto;
  }
}  
   