@charset "UTF-8";
/* Mobile Layout: 480px and below. */
#bannerLogo {
  width: 160px;
}
.container {
  position: relative;
  clear: both;
  float: left;
  display: block;
  z-index: 80;
  width: 100%;
}
.gridContainer {
  position: relative;
  clear: both;
  float: left;
  display: block;
  z-index: 84;
  width: 80%;
}
.gridContainerTitle {
  position: relative;
  clear: both;
  float: left;
  display: block;
  z-index: 84;
  text-align: center;
  width: 80%;
}
.headerLogoSection {
  clear: none;
  float: left;
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 8px;
}
.footerCSection {
  clear: none;
  float: left;
  display: block;
  width: 100%;
  text-align: right;
  padding: 0px;
  background-color: #e7e7e7;
}
.figCard {
  position: relative;
  clear: none;
  float: left;
  display: block;
}
.displayMobile {
  display: block;
}
.displayTabletAndDesktop {
  display: none;
}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
  #bannerLogo {
    width: 160px;
  }
  .container {
    position: relative;
    clear: both;
    float: left;
    display: block;
    z-index: 80;
    width: 100%;
  }
  .gridContainer {
    position: relative;
    clear: both;
    float: left;
    display: block;
    z-index: 84;
    width: 480px;
  }
  .gridContainerTitle {
    position: relative;
    clear: both;
    float: left;
    display: block;
    z-index: 84;
    text-align: center;
    width: 320px;
  }
  .headerLogoSection {
    clear: none;
    float: left;
    display: block;
    width: auto;
    text-align: left;
    margin-bottom: 0px;
  }
  .footerCSection {
    clear: none;
    float: left;
    display: block;
    width: 100%;
    text-align: right;
    padding: 0px;
    background-color: #e7e7e7;
  }
  .figCard {
    position: relative;
    clear: none;
    float: left;
    display: block;
  }
  .displayMobile {
    display: none;
  }
  .displayTabletAndDesktop {
    display: block;
  }
}
/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
  #bannerLogo {
    width: 180px;
  }
  .container {
    position: relative;
    clear: both;
    float: left;
    display: block;
    z-index: 80;
    width: 100%;
  }
  .gridContainer {
    position: relative;
    clear: both;
    float: left;
    display: block;
    z-index: 84;
    width: 768px;
  }
  .gridContainerTitle {
    position: relative;
    clear: both;
    float: left;
    display: block;
    z-index: 84;
    text-align: center;
    width: 480px;
  }
  .headerLogoSection {
    clear: none;
    float: left;
    display: block;
    width: auto;
    text-align: left;
    margin-bottom: 0px;
  }
  .footerCSection {
    clear: none;
    float: left;
    display: block;
    width: 100%;
    text-align: right;
    padding: 0px;
    background-color: #e7e7e7;
  }
  .figCard {
    position: relative;
    clear: none;
    float: left;
    display: block;
  }
  .displayMobile {
    display: none;
  }
  .displayTabletAndDesktop {
    display: block;
  }
}