@charset "UTF-8";
/* CSS Document */
body {
  background-color: #FFFFFF;
  margin: 0px;
  padding: 0px;
}
.quoteBox {
  padding: 16px;
  background-color: #e0e0e0;
}
/* Mobile Layout: 480px and below. */
.sections {
  z-index: 90;
  position: relative;
  clear: both;
  float: left;
  display: block;
  width: 100%;
}
.textSection {
  position: relative;
  clear: both;
  float: left;
  display: block;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
}
.quoteSection {
  position: relative;
  clear: both;
  float: left;
  display: block;
  width: 100%;
  background-color: #e0e0e0;
}
.leftSection {
  position: relative;
  clear: both;
  float: left;
  display: block;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 16px;
}

.rightSection {
  position: relative;
  clear: both;
  float: left;
  display: block;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
}

.hide_mobile {
  display: none;
}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
  .sections {
    z-index: 90;
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 480px;
  }
  .textSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 448px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .quoteSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 480px;
    background-color: #e0e0e0;
  }
  .leftSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 128px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 0px;
  }

  .rightSection {
    position: relative;
    clear: none;
    float: left;
    display: block;
    width: 288px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hide_tablet {
    display: none;
  }
}
/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
  .sections {
    z-index: 90;
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 768px;
  }
  .textSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 736px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .quoteSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 768px;
    background-color: #e0e0e0;
  }
  .leftSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 224px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 0px;
  }

  .rightSection {
    position: relative;
    clear: none;
    float: left;
    display: block;
    width: 480px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hide_desktop {
    display: none;
  }
}