/* CAT Main Boot Frame */

* { box-sizing: border-box;
    font-size: 1em; }

/* Create three equal columns that floats next to each other */
.column_side {
  float: left;
  width: 20%;
  padding: 10px;
  background: #fff9fe;
}

.column_middle {
  float: left;
  width: 60%;
  padding: 10px;
  justify-items: center;
  margin: 0;
  overflow-x: auto
}

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

  //justify-content: space-between;
  //align-items: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column_side {
    width: 100%;
  }

  .column_middle {
                   width: 100%;
                   justify-items: center;
                 }
}

html { font-family: 'Montserrat'; }

.header {
  background-color: #ddebff;;
  padding: 5px;
  background:url(../images/bg_banner3.jpg) no-repeat center;
  background-position:0px 0px;
  background-size: 100%;
  font-size: 0.9em;
  height: auto;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #f0fff8;
}

/* Style the topnav links */
.topnav a {
  float: right;
  display: block;
  color: purple;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.msgnav {
  overflow-y: scroll;
  background-color: #e4ffe8;
  max-height: 60px;
  text-align: right;
  height: 40px;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li:hover {
  background-color: #eaeaff;
}

.aside {
  background-color: #eefaff;
  padding: 1px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  display: block;
  width: 100%;
  height: auto;
}

.footer {
  background-color: #0099cc;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  margin-top:calc(5% + 10px);
}
