/*
  (c) Mediaweb Studio
*/

/* GENERIC STYLES
-------------------------------------------- */
.typography {
	font: 14px/1.3 "Open Sans", Arial, sans-serif;
	color: #3a3a3a;
}

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

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

/* LINKS 
-------------------------------------------- */
/* .typography a {
	color: #FF6900;
}
.typography a:visited {
	color: #000000;
}
.typography a:hover {
	color: #B04A04;
}
.typography a:active {
	color: #FF0000;
} */

/* LIST STYLES 
-------------------------------------------- */
.typography ul, .typography ol {
	margin: 15px 0 15px 40px;
	padding: 0 0 0 20px;
}
.typography .main-content ul,
.typography .mceContentBody ul,
.typography .main-content ol,
.typography .mceContentBody ol {
	overflow: hidden;
}
.typography ul ul, .typography ol ol {
	margin: 5px 0;
}
.typography li {
	margin: 0 0 5px;
}

/* HEADER STYLES
-------------------------------------------- */
h1,
.typography h1,
.typography .like-h1 {
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	color: #383839;
	font-size: 30px;
	margin: 0 0 24px;
}
.typography h2,
.typography .like-h2 {
	color: #0a6eb4;
	font-family: "Open Sans", sans-serif;
	font-size: 30px;
	font-weight: 600;
}
.typography h3, 
.typography .like-h3 {
	color: #0a6eb4;
	font-family: "Open Sans", sans-serif;
	font-size: 24px;
	font-weight: 600;
}
.typography h4 {
	color: #0a6eb4;
	font-family: "Open Sans", sans-serif;
	font-size: 20px;
	font-weight: 600;
	margin: 15px 0 5px;
}

/* PRE STYLES 
-------------------------------------------- */	
.typography pre {
	background: none;
	border: none;
	display: block;
	font-family: Courier, monospace;
	font-size: 14px;
	line-height: 17px;
	padding: 0;
}

/* TABLE STYLING 
-------------------------------------------- */
.typography table {
	margin: 20px 0;
	border-spacing: 0;
	border-collapse: collapse;
}
.typography th,
.typography thead td {
	background-color: #eee;
	text-align: center;
	border: 1px solid #aaa;
	padding: 10px;
	font-weight: bold;
}
.typography table tr:first-child td {
	border: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	font-weight: 600;
	background: #eee;
	text-transform: uppercase;
}
.typography td {
	border-bottom: 1px solid #ccc;
	padding: 10px 12px;
	vertical-align: top;
	font-size: 14px;
	background-color: #fff;
	text-align: center;
}
.typography caption {
	caption-side: top;
	font-size: 12px;
	font-style: italic;
	padding-bottom: 7px;
	text-align: center;
}

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

/* IMAGES 
-------------------------------------------- */
/* .typography .main-content img,
.typography.mceContentBody img {
	border-radius: 3px;
} */
.typography img.right,
.typography.mceContentBody img.right {
	float: right;
	margin-left:20px;
	margin-bottom:10px;
}
.typography img.left,
.typography.mceContentBody img.left {
	float: left;
	margin-right:20px;
	margin-bottom:10px;
}
.typography img.leftAlone,
.typography.mceContentBody img.leftAlone {
	float: left;
	margin-right: 100%;
	margin-bottom:8px;
}
.typography img.center,
.typography.mceContentBody img.center {
	display: block;
	float: none;
	margin: 5px auto 8px;
}