*{
	margin: 0;
	padding: 0;
}
.wrapper{
	width: 1170px;
	margin:auto;
}
* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 10;
}

/* Header/logo Title */
.header {
  padding: 100px;
  height: 15vh;
  text-align: left;
  background: #545454;
  color: white;
  background-image: url('images/HRRCBanner960.png');
  position: relative;
}

/* Increase the font size of the heading */
.header h1 {
  font-size: 24px;
}

/* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
.navbar {
  overflow: hidden;
  background-color: #545454;
  padding: 0px 20px;
  position: sticky;
  position: -webkit-sticky;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  color: white;
  text-align: center;
  text-decoration: none;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Active/current link */
.navbar a.active {
  background-color: #666;
  color: 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%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}

/* 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;
  }
}
th, td {
  padding: 15px;
}
/* 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%;
  }
}
/* Table layout */
table {
	margin-bottom: 100;
}
table, th, td {
  border-collapse: collapse;	
  border: 1px solid black;
  width: 75%;
  height: 20px;  
}
td {
	vertical-align: center;
}
td, th {
	padding: .25rem;
	text-align: left;
	border: 1px solid #ccc;
}

