/*
  (c) Mediaweb Studio
*/

/* GENERIC STYLES
-------------------------------------------- */
.typography {
	font: 300 15px/1.3 'Fira Sans', sans-serif;
	color: #000;
}

/* 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: #ff5a00;
}
.typography a:visited {
	color: #A3A3A3;
}
.typography a:hover {
	color: #d73800;
}
.typography a:active {
	color: #ff5a00;
} 

/* LIST STYLES 
-------------------------------------------- */
.typography ul, .typography ol {
	margin: 15px 0;
	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
-------------------------------------------- */
.typography h1,
.typography .like-h1 {
	font: 700 33px 'Fira Sans', sans-serif;
	margin: 0 0 15px;
	color:#a4a4a4;
}
.typography h2,
.typography .like-h2 {
	font: 700 25px 'Fira Sans', sans-serif;
	margin: 20px 0 10px;
	color:#a4a4a4;
}
.typography h3, 
.typography .like-h3 {
	font: 700 22px 'Fira Sans', sans-serif;
	margin: 15px 0 5px;
	color:#a4a4a4;
}
.typography h4 {
	font: 700 19px 'Fira Sans', sans-serif;
	margin: 15px 0 5px;
	color:#a4a4a4;
}
.typography h5 {
	font: 700 17px 'Fira Sans', sans-serif;
	margin: 15px 0 5px;
	color:#a4a4a4;
}

/* 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;
}
.typography th,
.typography thead td {
	background-color: #f1f1f1;
	text-align: center;
	border: none;
	padding: 10px;
	/* text-transform: uppercase; */
	font-weight: bold;
}
.typography td {
	border: none;
	border-bottom: 1px solid #CDCDCD;
	padding: 10px 12px;
	vertical-align: top;
	background-color: #fff;
}
.typography caption {
	caption-side: top;
	font-style: italic;
	padding-bottom: 7px;
	text-align: center;
}

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

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