* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  color: #333;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  background-color: #c9e4eb;
}

table.customTable {
  width: 90%;
  background-color: #FFFFFF;
  border-collapse: collapse;
  border-width: 1px;
  border-color: #D9E3DC;
  border-style: solid;
  color: #000000;

}

table.customTable thead {
  background-color: #ABBCC2;
}

table.customTable td, table th {
  border-width: 1px;
  border-color: #D9E3DC;
  border-style: solid;
  padding: 5px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 0;
    margin-bottom: 0;
}

main {
  flex: 1 0 auto;
}

/* Create two unequal columns that floats next to each other */
.column {
  float: left;
  padding-top: 15px;
  padding-left: 15px;
  height: 300px; /* Should be removed. Only for demonstration */
}

.leftSide {
	background: #F0C434;
  width: 15%;
}

.rightSide {
  width: 85%;
  background: #FFFFFF;
}

.ColumnBlankSides{
  width: 5%;
}

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

