body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;/*text colour is #333*/
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.styled-line {
  border-bottom: 1px solid #000;
  margin: 1em 0;
}

.topnav {
  overflow: hidden;
  background-color: #19234f; /*#19234f*/
}

.topnav a {
  float: left;
  display: block;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}

.topnav a:hover {
  color: #fec23d;
}

.topnav .active {
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

#pagewrap{
	width: 100%;
	margin: 0%;
}

.panel {
  display:block;
  background: #eee; /*#eee*/
  min-height: 100px;
  margin: 0px;
  padding: 0px;
}

/* Style the header */
.header {
  padding: 0px;
  margin: 0;
  text-align: center;
  background: #19234f;
  color: white;
}

/* Increase the font size of the h1 element */
.header h1 {
  font-size: 40px;
  margin-top: 0px;
  margin-bottom: 0px;
}
/* Increase the font size of the h4 element */
.header h4 {
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
}

/* Column container */
.row {  
  display: flex;
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  flex: 20%;
  background-color: white; /*was #f1f1f1*/
  padding: 10px;
  margin: 2%;
  margin-right: 5%;
  margin-left: 5%;
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19);
}

/* Main column */
.main {   
  flex: 40%;
  background-color: white; /*was white*/
  padding: 10px;
  margin: 2%;
  margin-right: 5%;
  margin-left: 5%;
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19);
}

/* Menu box */
.menubox {   
  flex: 15%;
  background-color: white;
  padding: 10px;
  margin: 5%;
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19);
}

/* 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;
    margin-left: 2%;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width:100%;
    margin-left:2%;
  }
}

