
/*{
    box-sizing: border-box;
}*/

html {
  height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    position: relative; /* 1. Position relative because of absolute child elements */
    width: 100%;
    height: 100%;
    padding: 0; /* 2. Using padding to define strech-able space */
    margin:0;
    /*box-sizing: border-box; *//* 3. Box sizing to subtract padding and border from the 100% height of this element when child elements define 100% height */
}

a {
  target: "_blank";
}

#bar-top {
    position: absolute;
    height: 35px;
    width: 100%;
    top: 0; /* Position absolute top bar */
    background-color: #407e50;
    padding: 13px 0px;
    text-align: center;
    font-size: 25px;
    color: white;
}

#bar-bottom {
    position: absolute;
    height: 16px;
    font-size: 16px;
    width: 100%;
    bottom: 0; /* Position absolute bottom bar */
    background-color: #777;
    padding: 10px 0;
    text-align: center;
    color: white;
}

#content-modules {
    position: absolute;
    top:51px;
    /*top:36px;*/
    /*top:0;*/
    bottom: 36px;
    width: 100%;
    margin:0;
}

/* Create two columns/boxes that floats next to each other */
.sidebar {
    width: 16%;
    height: 100%;
    /*background: #595969;*/
    background: #cce;
    float: left;
}


.sidebar > img{
  width:100%;
  display:block;
}

.nav{
  margin: 0;
  font-family: 'Arial', serif;
  background-color:#595969;
  color: #ffffff;
  list-style: none;
  text-align:left;
  padding: 5px 0 5px 0;
  /*position: fixed;
  top: 0;
  width: 100%;*/
}

.nav > li {
  /*display: inline-block;*/
  padding: 10px 20px 10px 20px;
}

.nav > li > a {
  display: block;
  text-decoration: none;
  color: #ffffff;
}

.nav> li > a:hover {
  color: #c1c1c1;
}

/* Style the list inside the menu */
.nav > ul {
    list-style-type: none;
    padding: 0;
}

.article {
    width: 84%;
    background-color: #f1f1f1;
    height: 100%;
    float: left;
}

.main {
  width: 100%;
  height: 100%;
  border:none;
}

/*body {
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    padding:0;
}*/

/* Style the header */
/*header {
    float: center;
    background-color: #666;
    padding: 20px;
    text-align: center;
    font-size: 35px;
    color: white;
}*/

/* Clear floats after the columns */
/*section:after {
    content: "";
    display: table;
    clear: both;
}*/

/* Style the footer */
/*footer {
    background-color: #777;
    padding: 10px;
    text-align: center;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}*/


/* 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: 600px) {
    nav, article {
        width: 100%;
        height: auto;
    }
}*/
