/*@font-face {
    font-family: 'nexa_lightregular';
    src: url('../font/nexa_light-webfont.eot');
    src: url('../font/nexa_light-webfont.eot?#iefix') format('embedded-opentype'),
    url('../font/nexa_light-webfont.woff') format('woff'),
    url('../font/nexa_light-webfont.ttf') format('truetype'),
    url('../font/nexa_light-webfont.svg#nexa_lightregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'nexa_boldregular';
    src: url('../font/nexa_bold-webfont.eot');
    src: url('../font/nexa_bold-webfont.eot?#iefix') format('embedded-opentype'),
    url('../font/nexa_bold-webfont.woff') format('woff'),
    url('../font/nexa_bold-webfont.ttf') format('truetype'),
    url('../font/nexa_bold-webfont.svg#nexa_boldregular') format('svg');
    font-weight: normal;
    font-style: normal;

}*/


body {
    font-size: 1em;
    line-height: 1.4;
    color: #848484;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
  body a { text-decoration: none; } /* this removes the underline from all links */
  body a:link { -webkit-tap-highlight-color: #ED842B; } /* this sets the highlight color when links are tapped on Safari (browser) on iPhone */


/* HEADERS */
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    font-weight: normal;
    margin-bottom: 10px;
    color: #fff;
}
.typography h1 {
  font-size: 1.625em;
  line-height: 45px;
  margin: 0 0 25px 0;
}
.typography h3 { font-size: 1.250em; line-height: 30px; margin-bottom: 10px; color:#ED842B;}
.typography h4 {
    font-size: 1.125em;
    line-height: 25px;
    margin-bottom: 5px;
    color: #ED842B;
}
.typography h5 { font-size: 16px; line-height: 20px; margin-bottom: 5px; }
.typography h6 { font-size: 14px; line-height: 20px; font-weight: bold; margin-bottom: 5px; }

.typography h2{
    color: #ED842B;
    font-weight: normal;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.typography .header-title{
    background: #5C6370;
    text-align: center;
    font-size: 1.8em;
    color:#fff;
    padding: 20px 0;
    text-transform: none;
}


/* PARAGRAGHS */
.typography  p { font-size: 1em; line-height: 1.4; margin: 0 0 15px; }
  .typography .intro {
      font-size: 1.875em;
      line-height: 3em;
  }
.typography em { font-style: italic; }

::selection,
::-moz-selection { /* Applies style to highlighted portion of a page */
    background: #b80000;
    color: #fff;
    text-shadow: none;
}

/* LINKS */
.typography a, 
.typography a.intro {
    text-decoration: none;
}

  .typography a:focus { }

  .typography a img:hover,
  .typography a:hover img{
      text-decoration: none;
      border-bottom: none;
  }


/* LIST STYLES
-------------------------------------------- */
.typography ul, 
.typography ol,
.typography dl { margin: 0 0 20px 25px; }
.typography ul li { list-style-type: disc; } /* adds disc style bullet to the list */
  .typography li { margin-bottom: 5px; list-style-position: inside;}


/* TABLE STYLES
-------------------------------------------- */
.typography table {
    border-collapse: collapse; /* borders are collapsed into a single border when possible */
    border: 1px solid #d4d4d4;
    border-spacing: 0; /* The border-spacing property sets the distance between the borders of adjacent cells - acts as a backup to border-collapse: collapse */
    margin: 0 0 10px;
    text-align: left;
}
  .typography table tr:nth-child(even) {
      background-color: #ededed
  }
  .typography table tr.even,
  .typography table th,
  .typography thead td {
      background-color: #ededed
  }
  .typography table td,
  .typography table th {
      padding: 2px 5px;
      vertical-align: top;
  }
  .typography table th {
      font-weight: bold;
  }



/* WYSIWYG EDITOR ALIGNMENT CLASSES 
-------------------------------------------- */
.typography .left {
    text-align: left
}
.typography .center {
    text-align: center
}
.typography .right {
    text-align: right
}


/* IMAGES 
-------------------------------------------- */
.typography img {
    height: auto !important; /* resets the image height so that it maintains its aspect ratio when width is set */
    margin-bottom: 10px;
}
.typography img.left {
    float: left;
    max-width: 50%;
    margin: 5px 20px 10px 0;
}
.typography img.right {
    float: right;
    margin: 5px 0 10px 20px;
}
.typography img.leftAlone {
    float: left;
    margin-right: 100%;
    margin-bottom: 10px;
    clear: both;
}
.typography img.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 10px;
    clear: both;
}
.typography .captionImage { width: 100%; margin-top: 5px; }
.typography .captionImage img { margin: 0; }
  .typography .captionImage.left {
    float: left;
    margin: 5px 30px 20px 0px;
  }
  .typography .captionImage.right{
    float: right;
    margin: 5px 0 20px 30px;
  }
  .typography .captionImage.left[style],
  .typography .captionImage.right[style] {
    max-width: 50%; /* Overides core width to make responsive */
  }
  .typography .captionImage.left img,
  .typography .captionImage.right img {
    float: none;
    max-width: none;
    width: 100%;
  }
  .typography .captionImage.left img {
    margin-right: -10px;
  }
  .typography .captionImage.right img {
    margin-left: -10px;
  }
  .typography .captionImage.right p {
    margin-left: -10px;
    text-align: left;
    margin-left: -10px;
  }
.typography .captionImage.leftAlone{
  float:none;
  margin: 0 20px 20px 0px;
}
.typography .captionImage.center{
  margin: 0 auto 20px;
}
.typography .captionImage p {
  clear: both;
  margin: 5px 0;
  font-style: italic;
  color: #888;
}


/* BLOCKQUOTES
-------------------------------------------- */
.typography blockquote {
  background: transparent url(../images/blockquote.png) no-repeat 0px 6px;
  color: #777;
  display: block;
  font-style: italic;
  margin: 0 0 20px;
  float: right;
  text-indent: 30px;
  width: 50%;
  margin-left: 5%;
  clear: both;
}
.typography blockquote p {
  font-size: 17px;
  line-height: 25px;
}
.typography pre {
  background: #F7F7F7;
  border: 1px solid #E4E4E4;
  font-family: Courier, monospace;
  margin: 0 0 20px 0;
  padding: 15px;
  clear: both;
}

/* ADDRESS
-------------------------------------------- */
address {
  display: block;
  margin-bottom: 20px;
}

@media only screen and (min-width: 20em) and (max-width: 47.938em){
    .typography h2{
        padding: 9px 0;
    }
}

@media only screen and (max-width: 47.938em) {
    .typography h1 {
        font-size: 19px;
        text-align: center;
        margin-bottom: 7px;
        text-indent: 0;
        padding: 0;

    }
}

