/*1.TYPOGRAPHY.CSS*/
h1, .h1-like {
  margin: 0.58333em 0 0 0;
  line-height: 1.4;
  font-size: 3.8rem;
  font-family: 'Roboto Slab',Georgia,Times,Times New Roman,serif; 
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
}

h2, .h2-like {
  margin: 0.7em 0 0 0;
  line-height: 1.4;
  /*font-size: 3.8rem;*/
  font-size: 2.8rem;
  font-family: 'Open Sans',Tahoma,Geneva,sans-serif;
  font-weight: 700;
  /*text-transform: uppercase;*/
  color: #131926;
}

h3, .h3-like {
  margin: 0.95455em 0 0 0;
  line-height: 1.4;
  font-size: 2.2rem;
  font-family: 'Open Sans',Tahoma,Geneva,sans-serif;
  font-weight: 700;
  /*text-transform: uppercase;*/
  /*color: #FFFFFF;*/
  color: #131926;
}

h4, .h4-like {
  margin: 1.05em 0 0 0;
  line-height: 1.4;
  font-size: 20px;
  font-size: 2rem;
  font-family: 'Open Sans',Tahoma,Geneva,sans-serif;
  font-weight: 700;
  /*text-transform: uppercase;*/
  color: #e8430c;
}

h5, .h5-like {
  margin: 1.16667em 0 0 0;
  line-height: 1.4;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: 'Open Sans',Tahoma,Geneva,sans-serif;
  font-weight: 700;
  /*text-transform: uppercase;*/
  color: #004782;
}

h6, .h6-like {
  margin: 1.3125em 0 0 0;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Open Sans',Tahoma,Geneva,sans-serif;
  font-weight: 700;
  /*text-transform: uppercase;*/
  color: #004782;
}



@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  h4 {
    font-size: 1.6rem;
  }
  h5 {
    font-size: 1.4rem;
  }
  h6 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  h4 {
    font-size: 1.4rem;
  }
}
p, ul, ol, dl,
blockquote, pre,
td, th,
label, textarea,
caption, figure {
  line-height: 1.5;
  margin: .75em 0 0;
}

a{
  display: inline-block;
  color: #e8430C;
  text-decoration: none;
  font-size:1.4rem;
  font-weight:700;
  -webkit-transition:color 0.3s ease-in-out;
  transition:color 0.3s ease-in-out;
}
a.underscore:after{
  display:block;
  content:"";
  width:auto;
  height:5px;
  margin-top: 2.5px;
  background:#e8430C;
  -webkit-transform:scaleX(0);
          transform:scaleX(0);
  -webkit-transform-origin:center left;
          transform-origin:center left; 
  -webkit-transition:-webkit-transform 0.25s ease-in-out; 
  transition:-webkit-transform 0.25s ease-in-out; 
  transition:transform 0.25s ease-in-out; 
  transition:transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
a:link, a:visited {
   color: #e8430C;
}
a:hover, 
a:active,
a:focus{
	color: #e8430C;
}
a.underscore:hover:after, 
a.underscore:active:after,
a.underscore:focus:after{
	-webkit-transform:scaleX(1);
	        transform:scaleX(1);
}

p {
  color: #131926;
  font-weight: 400;
  /* font-size: 1.3rem; */
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 1280px) {

}
@media (max-width: 1024px) {

}
@media (max-width: 767px) {

}

#main ul, #main ol {
  color: #131926;
  font-weight: 400;
  font-size: 1.3rem;
  padding-left: 15px;
}
@media (max-width: 1280px) {

}
@media (max-width: 1024px) {

}
@media (max-width: 767px) {

}

#main ol {
  display: block;
  padding: 0 0 0 35px;
  list-style: none;
  overflow: hidden;
  counter-reset: numList;
}

#main ol li {
  position: relative;
  margin-bottom: 10px;
}
#main ol li::before {
  counter-increment: numList;
  content: counter(numList);
  float: left;
  position: absolute;
  left: -35px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  color: #FFFFFF;
  line-height: 24px;
  width: 24px;
  height: 24px;
  background: #e8430c;
  border-radius: 100%;
}

#main ul li {
  list-style: none;
  list-style-position: outside;
  color: #131926;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
#main ul li:before {
  /* For a round bullet */
  /*content: '\2022';*/
  /* For a square bullet */
  content: '\25A0';
  display: block;
  position: relative;
  max-width: 0;
  max-height: 0;
  left: -17px;
  top: -7px;
  color: #131926;
  font-size: 20px;
  font-size: 2rem;
}
@media (max-width: 1024px) {

}
#main ul li strong {
  font-size: 1.3rem;
}
@media (max-width: 1280px) {

}
@media (max-width: 1024px) {

}
@media (max-width: 767px) {

}

sup {
  line-height: 0.8em;
  font-size: 7.5px;
  font-size: 0.75rem;
  vertical-align: top;
}

strong {
  font-weight: 700;
}
strong em {
  font-style: italic;
  font-weight: 700;
}

em {
  font-style: italic;
}
em strong {
  font-style: italic;
  font-weight: 700;
}

u {
  text-decoration: underline;
}

strike {
  text-decoration: line-through;
}

#main dd, #main dt {
  color: #131926;
  font-size: 1.3rem;
  font-weight: 400;
}

#main table {
  margin: 15px auto;
  width: 100% !important;
  color: #131926;
  font-size: 1.3rem;
  line-height: 1.3;
  /*tr:first-child td,*/
}
@media (max-width: 800px) {

}
@media (max-width: 767px) {

}
#main table th {
  background: #004782 !important;
  color: #FFFFFF;
  font-weight: 700;
  padding: 10px 5px;
}
@media (max-width: 767px) {
  #main table th {
    padding: 5px;
  }
}
#main table td {
  padding: 5px;
  vertical-align: middle;
  border-bottom: 1px dotted #004782 !important;
}
#main table p {
  color: #131926;
  font-size: 1.3rem;
}

input, textaera {
  border-radius: 0;
}

[type^="submit"], [type*="submit"] {
  -webkit-appearance: none;
}

.gform_description{
  font-size: 15px;
  padding: 15px 0;
  display: block;
}


/*1.FIN TYPOGRAPHY.CSS*/