.typography {
  /* IMAGES
	-------------------------------------------- */
}
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
  font-family: inherit;
  line-height: 1.1;
  color: #4c639e;
  margin-top: 15px;
  margin-bottom: 15px;
}
.typography h1 {
  font-size: 32px;
  color: #000;
  font-weight: 200;
}
.typography h2 {
  font-size: 28px;
  font-weight: 400;
}
.typography h3 {
  font-size: 25px;
  font-weight: 400;
}
.typography h4 {
  font-size: 22px;
  font-weight: 400;
}
.typography h5 {
  font-size: 19px;
  font-weight: 400;
}
.typography h6 {
  font-size: 17px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .typography h1 {
    font-size: 35px;
  }
  .typography h2 {
    font-size: 28px;
  }
  .typography h3 {
    font-size: 25px;
  }
  .typography h4 {
    font-size: 22px;
  }
  .typography h5 {
    font-size: 19px;
  }
  .typography h6 {
    font-size: 17px;
  }
}
@media (min-width: 992px) {
  .typography h1 {
    font-size: 40px;
  }
  .typography h2 {
    font-size: 30px;
  }
  .typography h3 {
    font-size: 27px;
  }
  .typography h4 {
    font-size: 24px;
  }
  .typography h5 {
    font-size: 20px;
  }
  .typography h6 {
    font-size: 18px;
  }
}
.typography p {
  margin: 0 0 15px;
}
.typography .lead {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .typography .lead {
    font-size: 17px;
  }
}
@media (min-width: 992px) {
  .typography .lead {
    font-size: 20px;
  }
}
.typography a {
  color: #0089b2;
  text-decoration: none;
}
.typography a:hover {
  color: #006786;
  text-decoration: underline;
}
.typography .more-link {
  text-decoration: none;
  position: relative;
}
.typography .more-link:before {
  font-family: "caarcsdicons";
  font-weight: normal;
  display: inline-block;
  position: relative;
  left: 0px;
  bottom: -2px;
  content: '\e605';
  color: #0089b2;
}
.typography .button-link {
  background: #8fc139;
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  padding: 15px 30px;
  display: inline-block;
}
.typography .button-link a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.typography small,
.typography .small {
  font-size: 85%;
}
.typography cite {
  font-style: normal;
}
.typography .text-left {
  text-align: left;
}
.typography .text-right {
  text-align: right;
}
.typography .text-center {
  text-align: center;
}
.typography .text-justify {
  text-align: justify;
}
.typography .text-muted {
  color: #f3f3f3;
}
.typography .text-primary {
  color: #4c639e;
}
a.typography .text-primary:hover {
  color: #3b4d7c;
}
.typography .text-success {
  color: #3c763d;
}
a.typography .text-success:hover {
  color: #2b542c;
}
.typography .text-info {
  color: #31708f;
}
a.typography .text-info:hover {
  color: #245269;
}
.typography .text-warning {
  color: #8a6d3b;
}
a.typography .text-warning:hover {
  color: #66512c;
}
.typography .text-danger {
  color: #a94442;
}
a.typography .text-danger:hover {
  color: #843534;
}
.typography .bg-primary {
  color: #fff;
  background-color: #4c639e;
}
a.typography .bg-primary:hover {
  background-color: #3b4d7c;
}
.typography .bg-success {
  background-color: #dff0d8;
}
a.typography .bg-success:hover {
  background-color: #c1e2b3;
}
.typography .bg-info {
  background-color: #d9edf7;
}
a.typography .bg-info:hover {
  background-color: #afd9ee;
}
.typography .bg-warning {
  background-color: #fcf8e3;
}
a.typography .bg-warning:hover {
  background-color: #f7ecb5;
}
.typography .bg-danger {
  background-color: #f2dede;
}
a.typography .bg-danger:hover {
  background-color: #e4b9b9;
}
.typography .page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #f6f6f6;
}
.typography hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border: 0;
  border-top: 4px solid #eaedef;
}
.typography ul,
.typography ol {
  padding-left: 10px;
  margin-top: 0;
  margin-bottom: 15px;
}
.typography ul ul,
.typography ol ul,
.typography ul ol,
.typography ol ol {
  margin-bottom: 0;
}
.typography ul li {
  list-style-type: none;
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.typography ul li:before {
  content: "●";
  position: absolute;
  display: block;
  left: 0;
  top: 10%;
  font-size: 12px;
  color: #4c639e;
}
.typography ul ul li:before {
  content: "-";
  left: 5px;
}
.typography .list-unstyled {
  padding-left: 0;
  list-style: none;
}
.typography .list-unstyled li:before {
  content: "";
}
.typography .list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.typography .list-inline li:before {
  content: "";
}
.typography .list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.typography dl {
  margin-top: 0;
  margin-bottom: 20px;
}
.typography dt,
.typography dd {
  line-height: 1.42857143;
}
.typography dt {
  font-weight: bold;
}
.typography dd {
  margin-left: 0;
}
@media (min-width: 992px) {
  .typography .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .typography .dl-horizontal dd {
    margin-left: 180px;
  }
}
.typography abbr[title],
.typography abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #f3f3f3;
}
.typography .initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.typography blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #f6f6f6;
}
.typography blockquote p:last-child,
.typography blockquote ul:last-child,
.typography blockquote ol:last-child {
  margin-bottom: 0;
}
.typography blockquote footer,
.typography blockquote small,
.typography blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #f3f3f3;
}
.typography blockquote footer:before,
.typography blockquote small:before,
.typography blockquote .small:before {
  content: '\2014 \00A0';
}
.typography .blockquote-reverse,
.typography blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #f6f6f6;
  border-left: 0;
  text-align: right;
}
.typography .blockquote-reverse footer:before,
.typography blockquote.pull-right footer:before,
.typography .blockquote-reverse small:before,
.typography blockquote.pull-right small:before,
.typography .blockquote-reverse .small:before,
.typography blockquote.pull-right .small:before {
  content: '';
}
.typography .blockquote-reverse footer:after,
.typography blockquote.pull-right footer:after,
.typography .blockquote-reverse small:after,
.typography blockquote.pull-right small:after,
.typography .blockquote-reverse .small:after,
.typography blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
.typography blockquote:before,
.typography blockquote:after {
  content: "";
}
.typography address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
.typography .padding-top-bottom-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.typography .padding-top-bottom-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.typography .padding-top-bottom-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.typography .padding-top-bottom-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.typography img {
  height: auto;
  /* resets the image height so that it maintains its aspect ratio when width is set */
}
.typography img.left {
  float: left;
  max-width: 50%;
  margin: 5px 20px 10px 0;
}
.typography img.right {
  float: right;
  max-width: 50%;
  /* Responsive width */
  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;
}
@font-face {
  font-family: 'caarcsdicons';
  src: url('fonts/caarcsdicons.eot?ntsjgo');
  src: url('fonts/caarcsdicons.eot?#iefixntsjgo') format('embedded-opentype'), url('fonts/caarcsdicons.woff?ntsjgo') format('woff'), url('fonts/caarcsdicons.ttf?ntsjgo') format('truetype'), url('fonts/caarcsdicons.svg?ntsjgo#caarcsdicons') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
  font-family: 'caarcsdicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-print:before {
  content: "\f02f";
}
.icon-uniE601:before {
  content: "\e601";
}
.icon-envelope-o:before {
  content: "\f003";
}
.icon-twitter2:before {
  content: "\f099";
}
.icon-facebook2:before {
  content: "\f09a";
}
.icon-google-plus:before {
  content: "\f0d5";
}
.icon-caret-down:before {
  content: "\f0d7";
}
.icon-caret-up:before {
  content: "\f0d8";
}
.icon-caret-left:before {
  content: "\f0d9";
}
.icon-caret-right:before {
  content: "\f0da";
}
.icon-envelope:before {
  content: "\f0e0";
}
.icon-linkedin2:before {
  content: "\f0e1";
}
.icon-chevron-circle-left:before {
  content: "\f137";
}
.icon-chevron-circle-right:before {
  content: "\f138";
}
.icon-chevron-circle-up:before {
  content: "\f139";
}
.icon-chevron-circle-down:before {
  content: "\f13a";
}
.icon-search:before {
  content: "\e600";
}
.icon-arrow-left:before {
  content: "\e602";
}
.icon-arrow-down:before {
  content: "\e603";
}
.icon-arrow-up:before {
  content: "\e604";
}
.icon-arrow-right:before {
  content: "\e605";
}
.icon-arrow-left2:before {
  content: "\e60a";
}
.icon-arrow-down2:before {
  content: "\e60c";
}
.icon-arrow-up2:before {
  content: "\e60d";
}
.icon-arrow-right2:before {
  content: "\e60e";
}
.icon-twitter:before {
  content: "\e609";
}
.icon-facebook:before {
  content: "\e606";
}
.icon-linkedin:before {
  content: "\e607";
}
.icon-menu:before {
  content: "\e60f";
}
.icon-googleplus:before {
  content: "\e608";
}
.icon-file-pdf:before {
  content: "\e60b";
}
.icon-bubble:before {
  content: "\e610";
}
