/* The Background =========================================================== */
  HTML {
    background-color: #D9B937;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0em;
    background-image: url("./images/indexbkgd.png");
    background-position: 50% 1cm;
    background-repeat: no-repeat;
    height: 100%;
  }

/* The Body ================================================================= */
  body {
    margin: 0;
  }

/* The Div containing the main table ======================================== */
  .tbldiv {
    text-align: center;
  }


/* The main table =========================================================== */
  .tbl {
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
    border: 15px white solid;
    border-collapse: collapse;
    font-family: tahoma;
    color: white;
  }

/* The cells of the main table ============================================== */
  .tbl td {
    border: 4px white solid;
  }

  .tbl td.empty {
    border: none;
  }

  .imgcelllong {
    background-color: white;
  }

/* The images in the cells of the main table ================================ */
  .imglong {
    width: 545px;
  }

  .imgleft {
    width: 75px;
  }

/* The divs conatining text in the cells of the main table ================= */
  .txtdiv {
    width: 420px;
    color: white;
    padding: 10px 20px;
    font-size: 0.8em;
  }

  #txtdiv1 {
    font-size: 2.5em;
    font-weight: normal;
  }

/* The text in the divs in the cells of the main table ================= */
  .colourtxt {
    color: black;
  }

/* The Button table ========================================================= */
  #btntbl {
    width: 80%;
    margin: auto;
  }

/* The cells in the Button table ============================================ */
  #btntbl td {
    border: 2px solid white;
  }

/* The anchors in the cells in the Button table ============================= */
  a {
    color: white;
    text-decoration: none;
    padding: 0.75em;
    font-weight: bold;
		transition: all 0.5s ease;
  }

  a:hover {
    background-color: #D9B937;
    border: 1px solid white;
		transition: all 0.25s ease;
  }


