/*
 *  Red: 226,50,33
 *  Orange:
    dark: 233,98,33
    medium: 241,145,36
    light: 247,176,42
 *  Yellow: 254,214,49
 *  Pink: 235,106,163
 *  Blue: 28,172,229
 *
 *  Source Sans Pro 300, 400, 700
 */

/* BASE TYPOGRAPHY */

body {
    font-weight:400;
    font-size:16px;
}

body a { text-decoration: none; } /* this removes the underline from all links */

a, a:hover, a:active, a:visited {
  outline:0;
}
a { color:rgb(241,145,36); }
a:hover, a:active { color:rgb(247,176,42); }
a:visited { color:rgb(233,98,33); }
  
/* HEADERS */
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    margin-bottom:0.65rem;
    font-weight:300;
}
.typography .sidebar h3 {
  text-align:left;
}
.typography h1 {
  font-size: 2em;
  margin-top: 0;
}
.typography h2 { font-size: 1.9em; }
.typography h3 { font-size: 1.7em; }
.typography h4 { font-size: 1.5em; }
.typography h5 { font-size: 1.3em; }
.typography h6 { font-size: 1.1em; }


/* PARAGRAGHS */
.typography p {
    line-height:1.5em;
    margin-bottom:1em;
}
/* emphasis */
.typography em, .typography i { font-style: italic; }
.typography strong, .typography b { font-weight:bold; }
.typography strike, .typography s { text-decoration:line-through; }
  
/* Horizontal rule */
.typograhy hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 2px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/* LIST STYLES
-------------------------------------------- */
.typography ul, .typography ol {
    margin-top:10px;
    margin-bottom:10px;
}
.typography li:not(:last-of-type) {
    margin-bottom:10px;
}
.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 ul > ul li { list-style-type:square }
.typography ul > ul > ul li { list-style-type:circle; }
.typography ol li { list-style-type:decimal; }
.typography ol > ol li,
.typography ul > ul li { font-size:90%; }
.typography ol > ol > ol li,
.typography ul > ul > ul li { font-size:80%; }


/* TABLE STYLES
-------------------------------------------- */
.typography table {
    border-collapse: collapse; /* borders are collapsed into a single border when possible */
    border: 0px none transparent;
    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) { }
  .typography table tr.even,
  .typography table th,
  .typography thead td { }
  .typography table td,
  .typography table th {
      padding: 2px 5px;
      border: 0px none transparent;
      vertical-align: top;
      text-align:left; /* helper for IE */
  }
  .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; /* resets the image height so that it maintains its aspect ratio when width is set */
    max-width: 100%;
}
.typography img.left {
    float: left;
    max-width: 50%;
    margin-right:20px;
}
.typography img.right {
    float: right;
    max-width: 50%; /* Responsive width */
    margin-left: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 img.landing-page-topic {
    border-radius:2.5rem;
    display:block;
    width:100%;
}
.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%; /* Overrides 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 {
    text-align: left;
  }
.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 {
  opacity:0.65;
  display: block;
  font-style: italic;
  text-indent: 30px;
  clear: both;
  font-size:1.2rem;
}
@media (min-width:520px) {
    .typography blockquote { width:50%; }
    .typography blockquote.left { float:left; margin:0em 1em 0.8em 0; }
    .typography blockquote.right { float:right; margin:0em 0 0.8em 0.8em; }
}
.typography blockquote p {
    margin-bottom:0px;
}
.typography blockquote p:before, blockquote p:after {
    font-family:"Georgia"; /* adds prettier quote marks */
    font-size:32px;
    vertical-align:middle;
}
.typography blockquote p:before {
    content:"\201C";
}
.typography blockquote p:after {
    content:"\201D";
}
.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;
  font-style:italic;
}

/* Allowed file types are listed in the asset upload section
------------------------------------------- */

/* download file types */

.typography article a:before {
    display:inline-block;
    font-family:"FontAwesome";
    margin-right:5px;
}

.typography article a[href$=".ace"]:before,
.typography article a[href$=".arc"]:before,
.typography article a[href$=".arj"]:before,
.typography article a[href$=".asf"]:before,
.typography article a[href$=".au"]:before,
.typography article a[href$=".avi"]:before,
.typography article a[href$=".dmg"]:before,
.typography article a[href$=".flv"]:before,
.typography article a[href$=".gpx"]:before,
.typography article a[href$=".hqx"]:before,
.typography article a[href$=".ico"]:before,
.typography article a[href$=".kml"]:before,
.typography article a[href$=".pages"]:before,
.typography article a[href$=".pcx"]:before,
.typography article a[href$=".pkg"]:before,
.typography article a[href$=".ra"]:before,
.typography article a[href$=".ram"]:before,
.typography article a[href$=".rm"]:before,
.typography article a[href$=".sit"]:before,
.typography article a[href$=".sitx"]:before,
.typography article a[href$=".swf"]:before,
.typography article a[href$=".webm"]:before {
    content:"\f016"; /* general file icon - fa-file-o */
}

.typography article a[href$=".htm"]:before,
.typography article a[href$=".html"]:before,
.typography article a[href$=".xhtml"]:before,
.typography article a[href$=".xml"]:before,
.typography article a[href$=".js"]:before {
    content:"\f1c9"; /* code file icon - fa-file-code-o */
}

.typography article a[href$=".pdf"]:before,
.typography article a[href$=".PDF"]:before,
.typography article a.pdf {
    content:"\f1c1"; /* pdf file icon - fa-file-pdf-o */
}
.typography article a[href$=".doc"]:before,
.typography article a[href$=".DOC"]:before,
.typography article a[href$=".docx"]:before,
.typography article a[href$=".DOCX"]:before,
.typography article a.doc {
    content:"\f1c2"; /* word document icon - fa-file-word-o */
}
.typography article a[href$=".xls"]:before,
.typography article a[href$=".XLS"]:before,
.typography article a[href$=".xlsx"]:before,
.typography article a[href$=".XLSX"]:before,
.typography article a.xls {
    content:"\f1c3"; /* excel document icon - fa-file-excel-o */
}
.typography article a[href$=".ppt"]:before,
.typography article a[href$=".PPT"]:before,
.typography article a[href$=".pptx"]:before,
.typography article a[href$=".PPTX"]:before,
.typography article a.ppt {
    content:"\f1c4"; /* excel document icon - fa-file-powerpoint-o */
}
.typography article a[href$=".gz"]:before,
.typography article a[href$=".GZ"]:before,
.typography article a[href$=".tgz"]:before,
.typography article a[href$=".bz2"]:before,
.typography article a[href$=".cab"]:before,
.typography article a[href$=".jar"]:before,
.typography article a[href$=".tar"]:before,
.typography article a[href$=".gzip"]:before,
.typography article a[href$=".GZIP"]:before,
.typography article a[href$=".zip"]:before,
.typography article a[href$=".ZIP"]:before,
.typography article a[href$=".zipx"]:before,
.typography article a[href$=".ZIPX"]:before,
.typography article a.archive {
    content:"\f1c6"; /* archive file icon - fa-file-archive-o */
}
.typography article a[href$=".exe"]:before,
.typography article a[href$=".EXE"]:before {
    
}
.typography article a[href$=".mp3"]:before,
.typography article a[href$=".MP3"]:before,
.typography article a[href$=".m4a"]:before,
.typography article a[href$=".m4v"]:before,
.typography article a[href$=".mid"]:before,
.typography article a[href$=".midi"]:before,
.typography article a[href$=".mkv"]:before,
.typography article a[href$=".mpa"]:before,
.typography article a[href$=".mpeg"]:before,
.typography article a[href$=".mpg"]:before,
.typography article a[href$=".ogg"]:before,
.typography article a[href$=".ogv"]:before,
.typography article a[href$=".wav"]:before,
.typography article a[href$=".wmv"]:before,
.typography article a.audio {
    content:"\f1c7"; /* audio file icon - fa-file-audio-o */
}
.typography article a[href$="jpg"]:before,
.typography article a[href$=".JPG"]:before,
.typography article a[href$="jpeg"]:before,
.typography article a[href$=".JPEG"]:before,
.typography article a[href$="png"]:before,
.typography article a[href$=".PNG"]:before,
.typography article a[href$="gif"]:before,
.typography article a[href$=".GIF"]:before,
.typography article a[href$="bmp"]:before,
.typography article a[href$=".BMP"]:before,
.typography article a[href$=".tif"]:before,
.typography article a[href$=".TIFF"]:before,
.typography article a.image {
    content:"\f1c5"; /* image file icon - fa-file-image-o */
}

.typography article a[href$=".txt"]:before,
.typography article a[href$=".TXT"]:before,
.typography article a[href$=".rtf"]:before,
.typography article a[href$=".RTF"]:before,
.typography article a[href$=".css"]:before,
.typography article a[href$=".csv"]:before {
    content:"\f0f6"; /* text file icon - fa-file-text-o */
}