@charset "utf-8";

/** To keep footer at the bottom of viewpoint **/
/** Code from https://matthewjamestaylor.com/bottom-footer **/
html, body {
    margin:0;
    padding:0;
    height:100%
}
#template-container {
    min-height: 100%;
    position: relative;
}
#template-header {
   /* padding:10px;*/
}
#template-body {
    padding: 10px;
    padding-bottom:175px;    /* height of footer */
}
#template-footer{
    position: absolute;
    bottom:0;
    width:100%;
    height:175px;            /* height of footer */
    background-color:#000; 
    color: #FFF;
    text-align: center;
}

/** Format the footer information **/
.footer-name {
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  font-size: medium;
  font-weight: normal;
}
.footer-addr {
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  font-size: small;
  margin-bottom: 2px;
color:white;
}
.footer-email a {
  color: #FFFFFF;
}
.smed i {                /* Format social media icons */
  font-size: 30px;
  text-shadow: 0 0px;
  letter-spacing: 5px;
  list-style-image: none;
  color: #FFFFFF;
  margin-top: 4px;
  margin-bottom: 4px;
  text-align: center;
}
.footer-copyrt {
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  font-size: x-small;
  color: gray;
  margin-bottom: 5px;
}