* {
  box-sizing: border-box;
}
/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: auto;
  max-width: 1680px;
/*  max-width: 1280px;*/
  background: lightgray;
}

/* item in a list */
li {
	margin-bottom: 0.5em;
}

/* item in a description list */
dt {
	font-weight: bold;
	margin-top: 1em;
}
a {
  color: white; 
}
a:hover {
  color: #00ff00; 
}
a:visited {
  color: green; 
}
/* Header/logo Title */
.header {
  padding: 10px;
  text-align: center;
  background: #000066;
  color: white;
  border-bottom: 1px solid white;
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  padding: 20px;
  background: #000066;
  color: white;
  border-right: 1px solid white;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  padding: 20px;
  background: #000066;
  color: white;
}

/* Fake image, just for this example */
.fakeimg {
  width: 100%;
  padding: 20px;
  /* background-color: #000066; /*#77779A; #AAAA9A; */
/*   background-color: lightgray;*/
  color: #FFFFFF; /*black; #000066*/
  border: 1px solid white;
}

/* image with background */
.bkgimg {
  width: 100%;
  padding: 10px;
  background-color: #aaa;
}

/* Footer */
.footer {
  padding: 20px;
/*  text-align: center;*/
 background: #000066;
 color: #999999;
 border-top: 1px solid white;
}

/* Responsive layout - when the screen is less than 700px wide, 
make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}
