/* from multi-keys */
/*I love me some border-box*/
* {
    box-sizing: border-box;
}
/*This just stops me getting horizontal scrolling if anything overflows the width*/
body {
    overflow-x: hidden;
}
/*Just removing default browser padding/margin*/
html,
body {
    padding: 0;
    margin: 0;
    color: black;
    font-family: Arial, Helvetiva, sans-serif;
    font-size:10pt;
    background: #FFFFFF;
}
/*Flexbox gives us the flexiness we need. The top just stays put as there is no scrolling on the body due to the page never exceeding viewport height*/
.Top {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c3d69b;
#    font-size: 125%;
    position: relative;
    z-index: 10;
    height: 6.5em;
    border-bottom: 2px solid black;
	}
/*This is our main wrapping element, it's made 100vh high to ensure it is always the correct size and then moved into place and padded with negative margin and padding*/
.Container {
    display: flex;
    overflow: hidden;
    height: 100vh;
    margin-top: -100px;
    padding-top: 100px;
    position: relative;
    width: 100%;
    backface-visibility: hidden;
    will-change: overflow;
}
/*All the scrollable sections should overflow and be whatever height they need to be. As they are flex-items (due to being inside a flex container) they could be made to stretch full height at all times if needed.
WebKit inertia scrolling is being added here for any present/future devices that are able to make use of it.
*/
.Left,
.Middle,
.Right {
	resize: horizontal;
	border-right: 2px solid black;
 overflow: auto;
    height: auto;
    padding: .5rem;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
}
/*Entirely optional – just wanted to remove the scrollbar on WebKit browsers as I find them ugly*/
.Left::-webkit-scrollbar,
.Middle::-webkit-scrollbar,
.Right::-webkit-scrollbar {
    display: none;
}
/*  Left and Right are set sizes while the Middle is set to flex one so it occupies all remaining space. This could be set as a width too if prefereable, perhaps using calc.*/
.Left {
    width: 65%;
    background-color: white;
}

.Middle {
    flex: 1;
}

.Right {
    width: 32%;
    background-color: white;
}

.homepageIcons {
    margin-left:2%;
    float:left;
    height:50px;
    width:50px;
    vertical-align:middle;
}

.leafidIcons {
    margin-left:2%;
    float:left;
    height:100px;
    width:100px;
    vertical-align:middle;
}

div#address {
  text-align:center;
  white-space:nowrap;
  height:1em;
  color:#000000;
  padding-top:.5em;
  padding-bottom:.5em;
  font-weight:bold;
  font-size:125%;
}
#menu2 {
  display:table;
  font-family: arial, helvetica, "sans-serif";
  font-style: normal;
  font-weight: bold;
  line-height: 1.2em;
  margin:0;
  list-style-type:none;
  white-space:nowrap;
  text-align:center;
  }

#menu2 li {
  display:table-cell;
  float:left;
  }
#menu2 a {
  float:left;
  width:auto;
  display:block;
  margin: 1px 1px;
  height:1.25em;
  padding:4px 12px;
  color:#160ab6;
  background:#c3d69b;
  border:1px solid #c3d69b;
  text-decoration:none;
  font-weight: bold;
  }

#menu2 span.active-menu-item {
  float:left;
  margin: 1px 1px;
  width:auto;
  display:block;
  height:1.25em;
  padding:3px 11px;
  color:#160ab6;
  background:#ffe4da;
  border:2px solid #d5a074;
  text-decoration:none;
  font-weight: bold;
  }

#menu2 a:hover {
  margin: 1px 1px;
  background:#886f45;
  padding:3px 11px;
  color:#eeeeee;
  border:2px solid red
  }
