*,
*:before,
*:after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
  position: relative;
}
html {
  height: 100%;
  /* Resets base font size to 10px, so setting font size to 14px in EMs is simple: 1.4em */
  font-size: 62.5%;
}
body {
  min-height: 100%;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  color: #312F2F;
  font-family: "Lato", Gotham, Arial, sans-serif;
  font-weight: 400;
}
hr {
  border: 0;
  height: 1px;
  height: 0.1rem;
  background-color: #ebebeb;
}
p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.66666667;
  margin: 0 0 16px;
  margin: 0 0 1.6rem;
}
a {
  color: #D62727;
  position: relative;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: underline;
  color: #851212;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0 0 0.5em;
  clear: left;
  font-weight: 700;
}
/* Any heading following content is given a top margin...
	because it usually needs some separation */
* + h1,
* + .h1,
* + h2,
* + .h2,
* + h3,
* + .h3,
* + h4,
* + .h4,
* + h5,
* + .h5,
* + h6,
* + .h6 {
  margin-top: 1em;
}
h1,
.h1 {
  font-size: 48px;
  font-size: 4.8rem;
}
h2,
.h2 {
  font-size: 36px;
  font-size: 3.6rem;
}
h3,
.h3 {
  font-size: 32px;
  font-size: 3.2rem;
}
h4,
.h4 {
  font-size: 28px;
  font-size: 2.8rem;
}
h5,
.h5 {
  font-size: 20px;
  font-size: 2.0rem;
}
h6,
.h6 {
  font-size: 16px;
  font-size: 1.6rem;
}
ul,
ol {
  line-height: 1.66666667;
  list-style-position: outside;
  margin: 0 20px 1.66666667em;
  margin: 0 2rem 1.66666667em;
  padding: 0;
}
ol ol {
  list-style-type: lower-alpha;
}
ul ul,
ol ol,
ul ol,
ol ul {
  margin: 0.5em 16px;
  margin: 0.5em 1.6rem;
}
li {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 4px;
  margin-bottom: 0.4rem;
}
table {
  text-align: left;
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  border: 1px solid #cecece;
  border: 0.1rem solid #cecece;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0.5em 1em;
}
th {
  background-color: #ebebeb;
  font-weight: normal;
}
td {
  font-size: 16px;
  font-size: 1.6rem;
}
iframe {
  border: 0;
}
.cke_editable h2,
.editable-text h2 {
  font-size: 24px;
  font-size: 2.4rem;
}
@media all and (min-width: 768px) {
  .cke_editable h2,
  .editable-text h2 {
    font-size: 2.6rem;
  }
}
@media all and (min-width: 1280px) {
  .cke_editable h2,
  .editable-text h2 {
    font-size: 2.8rem;
  }
}
.cke_editable h3,
.editable-text h3 {
  font-size: 20px;
  font-size: 2rem;
}
@media all and (min-width: 768px) {
  .cke_editable h3,
  .editable-text h3 {
    font-size: 2.2rem;
  }
}
@media all and (min-width: 1280px) {
  .cke_editable h3,
  .editable-text h3 {
    font-size: 2.4rem;
  }
}
.cke_editable h4,
.editable-text h4 {
  font-size: 18px;
  font-size: 1.8rem;
}
@media all and (min-width: 1280px) {
  .cke_editable h4,
  .editable-text h4 {
    font-size: 2rem;
  }
}
.cke_editable ul,
.editable-text ul {
  list-style: none;
  margin-left: 0;
}
.cke_editable ul li,
.editable-text ul li {
  position: relative;
  padding-left: 25px;
  padding-left: 2.5rem;
}
.cke_editable ul li:before,
.editable-text ul li:before {
  display: inline-block;
  width: 4px;
  width: 0.4rem;
  height: 4px;
  height: 0.4rem;
  left: 8px;
  left: 0.8rem;
  content: '';
  border-radius: 50%;
  background-color: #09B5CA;
  top: 8px;
  top: 0.8rem;
  position: absolute;
}
.cke_editable ol,
.editable-text ol {
  list-style: none;
  counter-reset: li;
  margin-left: 0;
}
.cke_editable ol li,
.editable-text ol li {
  counter-increment: li;
  position: relative;
  padding-left: 25px;
  padding-left: 2.5rem;
}
.cke_editable ol li:before,
.editable-text ol li:before {
  content: counter(li);
  color: #09B5CA;
  display: inline-block;
  text-align: right;
  position: absolute;
  left: 8px;
  left: 0.8rem;
  top: 0;
}
.cke_editable ol li li:before,
.editable-text ol li li:before {
  content: counter(li, lower-alpha);
}
.cke_editable ol li li li:before,
.editable-text ol li li li:before {
  content: counter(li, lower-roman);
}
.cke_editable hr,
.editable-text hr {
  border-top: 2px solid #f2f2f2;
  border-top: 0.2rem solid #f2f2f2;
}
button,
input {
  font-family: inherit;
}
input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
input::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
input::placeholder {
  color: #999;
  opacity: 1;
}
