/*------------------------------------------------------------------
text-format.css

Description - Basic text formatting only.

no higher level definitions in this file
that makes it not portable
------------------------------------------------------------------*/

.underline-16 {text-decoration:underline; font-size:16px;}
.underline-medium-18 {text-decoration:underline; font-size:18px;}
.underline-large-24 {text-decoration:underline; font-size:24px;}

.italic-small-14 {font-style: italic; font-size:14px;}
.italic-bold-medium-18 {font-weight:bold; font-style:italic; font-size:18px; color:red;}


.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.text-upper {
  text-transform: uppercase;
}


p {
  line-height: 1.8;
  padding: 0;
  margin: 0 0 20px;
}


body.body .text-lg {
  font-size: 34px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lato';
  font-weight: 600;
  color: black;
}
h1 {
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1.4;
}
h2 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}
h3 {
  font-size: 26px;
  margin-bottom: 15px;
  line-height: 1.4;
}
h4 {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.6;
}
h5 {
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 1.6;
}
h6 {
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.8;
}


/* Duplicate h1 & h2, but using different name
/* t1, t2  title1, title2
/* This is done because h1 & h2 are important for keyword search,
/* they are identified as subjects of your web site.
/* So on pages that are like about the company, facilites, etc
/* I am using these instead.
 */
.t1 {
  font-family: 'Lato';
  font-weight: 600;
  color: black;
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.t2 {
  font-family: 'Lato';
  font-weight: 600;
  color: black;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}