/* BASE TYPOGRPHY */

@font-face {
    font-family: 'FontAwesome';
    src: url('../webfonts/fontawesome-webfont.eot');
    src: url('../webfonts/fontawesome-webfont.eot') format('embedded-opentype'),
    url('../webfonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
    url('../webfonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
    url('../webfonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
    url('../webfonts/fontawesome-webfont.svg#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../webfonts/Roboto-Light.ttf') format('truetype'),
    url('../webfonts/roboto-light-webfont.woff2') format('woff2'),
    url('../webfonts/roboto-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../webfonts/Roboto-LightItalic.ttf') format('truetype'),
    url('../webfonts/roboto-lightitalic-webfont.woff') format('woff'),
    url('../webfonts/roboto-lightitalic-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('../webfonts/Roboto-Medium.ttf') format('truetype'),
    url('../webfonts/roboto-medium-webfont.woff') format('woff'),
    url('../webfonts/roboto-medium-webfont.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../webfonts/Roboto-MediumItalic.ttf') format('truetype'),
    url('../webfonts/roboto-mediumitalic-webfont.woff') format('woff'),
    url('../webfonts/roboto-mediumitalic-webfont.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
}


@font-face {
    font-family: 'Roboto';
    src: url('../webfonts/Roboto-Thin.ttf') format('truetype'),
    url('../webfonts/roboto-thin-webfont.woff') format('woff'),
    url('../webfonts/roboto-thin-webfont.woff2') format('woff2');
    font-weight: 200;
}

@font-face {
    font-family: 'Roboto';
    src: url('../webfonts/Roboto-ThinItalic.ttf') format('truetype'),
    url('../webfonts/roboto-thinitalic-webfont.woff') format('woff'),
    url('../webfonts/roboto-thinitalic-webfont.woff2') format('woff2');
    font-weight: 200;
    font-style: italic;
}



body {
    color: #23201F;
    font-size: 18px; /* This overrides the browsers default font size */
    line-height: 1.5em; /* If you change the font-size make sure you change the line-height value as well - the usual ratio is around 1.5 (font-size x 1.5 = line-height) */
}
body, input, textarea, select, button {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
body a {
    text-decoration: none;
} /* this removes the underline from all links */


/* HEADERS */
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    font-weight: normal;
    margin: 0;
    line-height: 1.5em;
}

.typography h1, .typography .h1 {
  font-size: 50px;
}

.typography h2, .typography .h2 {
    font-size: 42px;
    font-weight: bold;
    color: #837868;
}

.typography h3, .typography .h3 {
    font-size: 28px;
    font-weight: bold;
    color: #205391;
}

.typography h4, .typography .h4 {
    font-size: 22px;
}

.typography h5, .typography .h5 {
    font-size: 18px;
}

.typography h6, .typography .h6 {
    font-size: 14px;
}


/* PARAGRAGHS */
.typography p, .typography .p {
    font-size: 18px;
}

.typography p {
    margin-bottom: 8px;
}


/* LINKS */

.typography a {
    color: #205391;
}

.main a:hover, .typography.footer a:hover {
    text-decoration: underline;
}

/* WYSIWYG EDITOR ALIGNMENT CLASSES
-------------------------------------------- */
.typography .left {
    text-align: left
}
.typography .center {
    text-align: center
}
.typography .right {
    text-align: right
}


/* IMAGES
-------------------------------------------- */
.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;
}


/* LIST ITEMS
-------------------------------------------- */

ul {
    padding: 0;
}

li {
}


