/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 11 May 2020, 13:45:48
    Author     : ian
*/
/* Style the header */
* {
  box-sizing: border-box;
}
.error {
    color: #FF0000;
}

body {
  font-family: Arial;
  padding: 0px;
  background: #808080;
  margin: 0px;
}
.top-container {
  background-color: #f1f1f1;
  padding: 0px;
  text-align: center;
}

header {
  background-color: #808080;
  padding: 0px;
  text-align: center;
  font-size: 35px;
  color: #000066;
}
.titleimg {
  float: left;
  width: 100%;
  vertical-align: top;
  padding: 15px;
}
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Container for flexboxes */
section {
  display: -webkit-flex;
  display: flex;
}

/* Style the navigation menu */
nav {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #ccc;
  padding: 20px;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
  color: #000066;
}

/* Style the content */
article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  background-color: #000000;
  padding: 10px;
}

/* Style the footer */
footer {
  background-color: #808080;
  padding: 10px;
  text-align: left;
  color: white;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
#menubar {
  background-color: #000033;
  position: sticky;
  top: 0px;
  z-index: 50;
  padding: 0px;
}
#menubar ul {
  list-style-type: none;
  margin: 0px;  
  padding: 0;
  overflow: hidden;
  background-color: #000033;
  position: sticky;
  top: 0px;
  z-index: 50;
}

#menubar li {
  float: left;
}

#menubar li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
#menubar li .active {
  color: #003300;
}
#menubar li p {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

#menubar li a:hover {
  background-color: #999999;
}

#menubar .active {
  background-color: white;
  colour: #000033;
}
#joinus {
    width: 100%;
  background-color: #808080;
  top: 0px;
  z-index: 50;
}
#joinus td {
    width: 50%;
    text-align: center;
    padding: 30px;
}
.img_cont_box {
  display: table;
  width: 90%;
  margin: 20px auto;
}

.img_cont {
  display: table-cell;
  text-align: center;
  width: 14%;
}

.img_cont_img {
  width: 100%;
  max-width: 150px;
}
#imagestrip {
    overflow-x:auto;
}
#imagestrip img {
    float: none; 
    height:100px; 
    width:auto; 
    padding: 2px;
}
#imagestrip table {
    width: 100%;
}
.joining {
  width: auto;
height: 300px;  
}
.indextable {
    width: 100%;
}
.indextable table {
    width: 100%;
}
.indextable td {
    width: 50%;
    text-align: center;
}
.indextable p {
    text-align: center;
}
.indextable h1 {
    text-align: center;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
    

