﻿@charset "UTF-8";
/* CSS Document */
body { /* changed from class - class not needed - use the tag*/
  background-color: rgba(0,0,0,1);
}

table{  /* changed this was inline and wrong values?*/
    border:none;
    margin:auto;
    width:85%;
}

.imgBox{  /* image div - here not inline*/
    text-align:center;
}

#banner{  /* image - here not inline*/
    width: 1000px;  /* missed off px on these 2 so would not work - 70?? can also be 70%*/
    height: 70px;
}

.text_page_titles {
  font-family: "Segoe", "Segoe UI", "DejaVu Sans", "Trebuchet MS", "Verdana", "sans-serif"; /* changed some were not in quotes */
  font-size: 25px;
  font-weight: bold;    /* changed - not font-style*/
  text-align: left;   /* changed - stop using align - its text-align - changed from center to left */
  color: gold;
}
.text_update_info {
  font-size: 16px;
  font-weight: bold;    /* weight not style*/
  color: rgba(255,209,0,1.00);
}
.text_section_headings {
  font-size: 20px;
  font-weight: bold; /* weight not style*/ 
  color: #EBBE1D;
}
.text_main_body {
  font-size: 16px;
  font-style: normal;
  color: rgba(193,193,193,1);
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}