/*
  (c) Mediaweb Studio
*/

/* GENERIC STYLES
-------------------------------------------- */
.typography {
	font: 400 16px Open Sans, sans-serif;
	color: #393939;
}

/* PARAGRAPHS
-------------------------------------------- */
.typography .main-content p,
.typography.mceContentBody p {
	margin: 0 0 15px;
}

/* QUOTES
-------------------------------------------- */
.typography blockquote {
	margin: 15px 0 15px 30px;
	font-style: italic;
}

/* LINKS 
-------------------------------------------- */
.typography a {
	color: #007FBA;
	text-decoration: underline;
}
.typography a:visited {
	color: #004464;
}
.typography a:hover {
	color: #01ADDB;
	text-decoration: none;
}
.typography a:active {
	color: #780F0A;
	text-decoration: none;
}

/* LIST STYLES 
-------------------------------------------- */
.typography .main-content ul,
.typography .mceContentBody ul,
.typography .main-content ol,
.typography .mceContentBody ol {
	overflow: hidden;
}
.typography ul, .typography ol {
	margin-top: 1em;
	margin-bottom:1em;
	padding-left: 2em;
}
.typography ul ul, .typography ol ol {
	margin-top: 0.3em;
	margin-bottom: 0.3em;
	padding-left: 1.2em;
}

/* HEADER STYLES
-------------------------------------------- */
.typography h2,
.typography .like-h2 {
	font: 700 28px Open Sans, sans-serif;
	margin: 15px 0;
	color: #21272D;
}
.typography h3,
.typography .like-h3 {
	font: 700 24px Open Sans, sans-serif;
	margin: 15px 0;
	color: #21272D;
}
.typography h4 {
	font: 700 21px Open Sans, sans-serif;
	margin: 15px 0;
	color: #21272D;
}

/* PRE STYLES 
-------------------------------------------- */	
.typography pre {
	background: none;
	border: none;
	display: block;
	font-family: Courier, monospace;
	font-size: 123%;
	margin: 0;
	padding: 0;
}

/* TABLE STYLING 
-------------------------------------------- */
.typography table {
	margin: 20px 0;
	border-spacing: 0;
	border-collapse: collapse;
	text-align: center;
}
.typography th,
.typography thead td {
	background-color: #E4E4E4;
	text-align: center;
	border-bottom: none;
	font-weight: 700;
	padding: 8px 30px;
}
.typography td {
	border-bottom: 1px solid #D3D3D3;
	padding: 8px 30px;
	vertical-align: top;
	background-color: transparent;
}
.typography caption {
	caption-side: top;
	font-size: 12px;
	font-style: italic;
	padding-bottom: 7px;
	text-align: center;
}
.typography tr.summary td {
	background-color: #eee;
	text-align: right;
}
.typography tr.summary td.right.total {
	text-align: center;
}
.typography tr.summary.grandtotal td {
	font-weight: 700;
}
.typography tfoot {
	font-weight: 700;
}
.typography tfoot td:nth-of-type(5) {
	font-size: 17px;
}

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

/* IMAGES 
-------------------------------------------- */
.typography img.right {
	float: right;
	margin-left:10px;
	margin-bottom:8px;
}
.typography img.left {
	float: left;
	margin-right:10px;
	margin-bottom:8px;
}
.typography img.leftAlone {
	float: left;
	margin-right: 100%;
	margin-bottom:8px;
}
.typography img.center {
	display: block;
	float: none;
	margin: 5px auto 8px;
}