/* Coxco Brand Colours */
/* #fbb731 Yellow */
/* #023f88 Blue */
/* #464646 Grey Text */
/* #252525 Grey Navbar */


/* TYPEKIT Coxco FONTS */
.myriad-pro {font-family: "myriad-pro",sans-serif;} /* Copy */
.myriad-pro-condensed {font-family: "myriad-pro-condensed",sans-serif;} /* Top Headings */
/* BASE TYPOGRPHY */

body {
    font-size: 1em;
    line-height:1.1em;
    margin-bottom: 20px;
    color: #464646;
    background-color: #fff;
    font-family: "myriad-pro",sans-serif;
}
  body a { text-decoration: none; }
  body a:link { -webkit-tap-highlight-color: #a1ad8b } /* this sets the highlight color when links are tapped on Safari (browser) on iPhone */

/* HEADERS */

.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    color: #464646;
}
.typography h1 { font-size: 2.05em; line-height: 26px; margin: 0 0 20px 0; letter-spacing: 0.04em; text-transform: uppercase; font-family: "myriad-pro-condensed",sans-serif;}
.typography h2 { font-size: 1.4em; line-height: 1.1em; margin-bottom: 15px; letter-spacing: 0.04em; text-transform: uppercase; font-family: "myriad-pro-condensed",sans-serif;}
.typography h3 { font-size: 1.6em; line-height: 30px; margin-bottom: 25px;font-weight: 100; font-family: "myriad-pro",sans-serif;}
.typography h4 { font-size: 22px; line-height: 25px; margin-bottom: 5px; font-family: "myriad-pro",sans-serif;}
.typography h5 { font-size: 18px; line-height: 20px; margin-bottom: 5px; font-family: "myriad-pro",sans-serif;}
.typography h6 { font-size: 16px; line-height: 20px; font-weight: bold; margin-bottom: 5px; font-family: "myriad-pro",sans-serif;}


/* PARAGRAGHS */
.typography  p { font-size: 15px; line-height: 20px; margin: 0 0 20px; }
.typography .intro {
      font-size: 22px;
      line-height: 32px;
      margin-bottom: 20px;
  }
.typography em { font-style: italic; }

.typography .date {
      font-size: 14px;
      margin-bottom: 0px;
  }

::selection,
::-moz-selection { /* Applies style to highlighted portion of a page */
    background: #e5cf84;
    color: #464d56;
    text-shadow: none;
}

/* LINKS */
.typography a, 
.typography a.intro {
    color: #023f88;
    text-decoration: none;
}
  .typography a:hover { 
    color: #000;
  }
  .typography a:focus { }


/* LIST STYLES
-------------------------------------------- */
.typography ul, 
.typography ol,
.typography dl { margin: 0 0 20px 18px; }
.typography ul li { list-style-type: disc; } /* adds disc style bullet to the list */
  .typography li { margin-bottom: 15px; }


/* TABLE STYLES
-------------------------------------------- */
.typography table {
    border-collapse: collapse; /* borders are collapsed into a single border when possible */
	font-size: 15px;
    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;
    width: 100%;
}
  .typography table tr:nth-child(even) {
      background-color: #c6c6c6
  }
  .typography table tr.even,
  .typography table th,
  .typography thead td {
      background-color: #c6c6c6
  }
  .typography table td {
      padding: 10px 10px;
      border-bottom: 1px solid #d4d4d4;
      vertical-align: top;
  }
  .typography table th {
      font-family: "myriad-pro-condensed",sans-serif;
      font-weight: bold;
      text-transform: uppercase;
      color: #fff;
      padding: 10px 10px;
      vertical-align: middle;
      background-color: #023f88;
  }

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


/* IMAGES 
-------------------------------------------- */
.typography img {
    border: none;
    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;
}


/* BLOCKQUOTES
-------------------------------------------- */
.typography blockquote {
  font-family: "myriad-pro",sans-serif;
  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;
}


/* ADDRESS
-------------------------------------------- */
address {
  display: block;
  margin-bottom: 20px;
}