BODY { 
	background-color: ivory;
	}

.header {
  width:90%;
  margin:auto;
  -webkit-box-shadow: -2px 2px 80px -10px #0B0B3B;
  -moz-box-shadow: -2px 2px 80px -10px #0B0B3B;
  box-shadow: -2px 2px 80px -10px #000;
  padding: 20px;
}

.wrapper{
  width: 100%;
  #background-color:yellow;
}

.box{
  vertical-align: top;
  display: inline-block;
  box-sizing: border-box;
}

.one {
  #background-color: gray;
  width: 25%;
}

.two { 
  #background-color: white;
  width: 64%;
  #border:2px dashed #ccc;
}

.smalltext{
	font-size: 10px;
	font-style: italic;
}

@media screen and (max-width: 800px) {
  .box{
    display: block;
  }

  .one {
    width: 100%;
  }

  .two {
    width: 100%;
  }
}

ul {
	list-style-type: none;
	padding: 10;
}
li{
  margin: 20px 0;
}

.headertable table, th, td {
  #border: 1px solid black;
  padding: 5px;
}

