body {
    font-size: 18px; /* This overrides the browsers default font size */
    line-height: 28px; /* 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) */
    margin-bottom: 20px;
    color: #333333;
	font-family: miller, robotoregular, Arial, Helvetica, 'Sans Serif';
}
  body a { text-decoration: none; } /* this removes the underline from all links */
  body a:link,
  body a:visited,
  body a:active,
  body a:hover {
	  -webkit-tap-highlight-color: transparent;
	  text-decoration: underline;
	  color: #000;
  } /* this sets the highlight color when links are tapped on Safari (browser) on iPhone */


.typography b,
.typography .bold,
.typography strong {
	font-family: miller, robotobold, Arial, Helvetica, 'Sans Serif';
	font-weight: bold;
}

/* HEADERS */
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    font-family: gothic, robotomedium, Arial, Helvetica, 'Sans Serif';
    font-weight: normal;
    margin-bottom: 10px;
    color: #333;
}

.typography h1,
.typography h2 {
	font-family: gothic, robotomedium ,Arial, Helvetica, 'Sans Serif';
	font-size: 3.0em;
    line-height: 45px;
	text-transform: uppercase;
	margin-top: 80px;
	margin-bottom: 40px;
}


/*.typography h2 { font-size: 18px; line-height: 24px; margin-bottom: 15px; }*/
.typography h3 { font-size: 18px; line-height: 24px; margin-bottom: 10px; }
.typography h4 { font-size: 18px; line-height: 24px; margin-bottom: 10px; }
.typography h5 { font-size: 18px; line-height: 24px; margin-bottom: 10px; }
.typography h6 { font-size: 18px; line-height: 24px; margin-bottom: 10px; }


/* PARAGRAGHS */
.typography  p {
    line-height: 1.6em;
    font-size: 1.2em;
    margin: 0 0 30px;
}

.typography em { font-style: italic; }


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


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

/* TABLE STYLES
-------------------------------------------- */

td:first-child {
	vertical-align: top;
	padding-right: 30px;
	white-space: nowrap;
}

td {
	line-height: 24px;
}


/* 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: 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;
}
.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;
	font-family: miller, robotoregular ,Arial, Helvetica, 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;
}
.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;
}
