/*
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 : 22 Aug 2020, 12:56:12
    Author     : Graeme
*/

* {
  box-sizing: border-box;
}

body {
 margin:10px;
 font-family: Arial;
 background: #f1f1f1;
}

.header{
 width: 100%;
 background: #ffffff;
 text-align:center;
}



.footer{
 position: fixed;
 left: 0;
 bottom: 0;   
 width: 100%;
 background-color: #000;
 color: #fff;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 50%;
}

/* twocolumn */
.twocolumn {   
  float: left;
  width: 75%;
}


/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background-color: #f1f1f1;
  padding-left: 20px;
}


/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

.fullcard {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  min-height: 1100px;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.body-content{
 margin: 0px;
 width: 100%;
 min-height: 1100px;
 background-color: #f1f1f1;
 
}


.container {
  display: inline-block;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}


/* Rotate first bar */
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
  transform: rotate(-45deg) translate(-9px, 6px) ;
}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
  transform: rotate(45deg) translate(-8px, -8px) ;
}

.caret
{
    font-size: 13px;
    vertical-align: middle;
}

.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
}

.tblbanded {
  width:100%;  
  border-radius: 25px;  border: 2px solid #73AD21;  padding: 8px;
}

.tblbandednoborder {
  width:100%;  
  border-radius: 25px;  border: 0px solid #73AD21;  padding: 6px;
}
.tblbandednoborder_td {
  padding: 6px;
  text-align: left;
  border: 0px solid black;
  border-collapse: collapse;
}
.tblbandednoborder tr:nth-child(even) {
  background-color: #fff;
}
.tblbandednoborder tr:nth-child(odd) {
 background-color: #eee;
}

.tblbanded_td {
  padding: 8px;
  text-align: left;
  border: 1px solid black;
  border-collapse: collapse;
}
.tblbanded tr:nth-child(even) {
  background-color: #eee;
}
.tblbanded tr:nth-child(odd) {
 background-color: #fff;
}
.tblbanded_th {
  background-color: black;
  color: white;
  padding: 8px;
  text-align: left;
  border: 1px solid black;
  border-collapse: collapse;
}

a.lnkbtn:link, a.lnkbtn:visited {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  border-radius: 12px;
}

a.lnkbtn:hover, a.lnkbtn:active {
  background-color: green;
  color: white;
}


a.lnkbtncancel:link, a.lnkbtncancel:visited {
  background-color: #000000;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  border-radius: 12px;
}

a.lnkbtncancel:hover, a.lnkbtncancel:active {
  background-color: #ccccff;
  color: white;
}

.topnav {
  background-color: #333;
 /* overflow: ; */
 
}

.topnav::after {
    clear: both;
    content: "";
    display: block;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #4CAF50;
  color: white;
}

.topnav .icon {
  display: none;
  padding-top: 3px;
  padding-bottom: 1px;
  text-decoration: none;
}

.dropdown {
    float: left;
/*    overflow: ;*/
}

.dropdown .dropbtn {
    font-size: 17px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: #333;
    font-family: inherit;
    margin: 0;
}



.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

 

 

.subdropdown .subdropbtn {
    font-size: 17px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: #555 ;
    font-family: inherit;
    width: 160px;
}

 

.subdropdown-content {
    display: none;
    position: absolute;
    height: 0px;
 background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.subdropdown-content a {
    float: none;
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
 position: relative;
    top: -48px;
    left: 160px;
 background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}


.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.subdropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.subdropdown:hover .subdropdown-content {
    display: block;
}



 

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky,.topnav.responsive.sticky {

  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}


@media screen and (max-width: 600px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }

}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }

}

