/** ----------------------------------------------------------
 *
 * Contains the generic theme typography styles
 *
 *    Include your notes or table of contents here
 *
 *   
 *
 * ------------------------------------------------------- */

/* TEMPLATE CUSTOM FONTS */
.tk-freight-sans-pro { /* regular, bold, italic */
  font-family: "freight-sans-pro",sans-serif;
}

.tk-atrament-web { /*regular*/
  font-family: "atrament-web",sans-serif;
}  

.tk-proxima-nova-extra-condensed { /*semi-bold 600*/
  font-family: "proxima-nova-extra-condensed",sans-serif;
}


/* BASE TYPOGRPHY */
body {
	font-size: 14px;
	color: #fff;
	font-family: "freight-sans-pro",sans-serif;
	font-weight: 400;
}

body em  { 
	font-style: italic; 
}

body strong  { 
	font-weight: 700;
}

.typography a { 
	color: #af8543;
	text-decoration: none;
}

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

.typography ::-moz-selection, .typography ::selection {
    background: #af8543;
    color: #fff;
}

/* HEADERS */
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typogrpahy h5,
.typography h6 {
	font-family: "proxima-nova-extra-condensed",sans-serif;
	font-weight: 600;
	font-size: 30px;
	margin-bottom: 5px;
	text-transform: uppercase;
	color: #cbbda6;
}

.typography h2 {
	font-size: 24px;
}

.typography h3 {
	font-size: 20px;
}

.typography h5 {
	font-size: 16px;
}

.typography h6 {
	font-size: 16px;
	line-height: 16px;
}

.typography p.subHeading {
	margin: -10px 0 10px 0;
	font-size: 14px;
	line-height: 14px;
	color: #af8543;
	text-transform: uppercase;
}


/* PARAGRAPHS */
.typography  p { 
	margin: 0 0 20px 0; 
	line-height: 18px;
}


/* LIST STYLES
-------------------------------------------- */
.typography ul, 
.typography ol,
.typography dl { 
	margin: 0 0 20px 10px; 
}

.typography ul li { 
	list-style-type: none; 
	background: url('../images/bullet.png') no-repeat 0 7px;
	margin-bottom: 2px; 
	padding-left: 20px;
}

.typography ul li:hover { 
	background: url('../images/bullet-hover.png') no-repeat 0 7px;
}


/* TABLE STYLES
-------------------------------------------- */
.typography table {
    border-collapse: collapse;
    border: 1px solid #d4d4d4;
    border-spacing: 0;
    margin: 0 0 10px;
    text-align: left;
}

.typography table td {
		background-color: #fff;
		color: #000;
		padding: 10px 20px;
		border: 1px solid #000;
		vertical-align: top;
}

.typography table th,
.typography td.thead {
		background-color: #cbbda6;
		font-weight: 700;
		font-size: 18px;
}


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


/* IMAGES 
-------------------------------------------- */
.typography img {
    border: 2px solid #000;
    height: auto;
}
.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 {
  background: transparent url(../images/blockquote.png) no-repeat 0px 6px;
  font-family: "CamboRegular", Georgia, "Times New Roman", Times, 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;
}