/*
  (c) Mediaweb Studio
*/

/* GENERIC STYLES
-------------------------------------------- */
.typography {
	font: 15px/1.2 PT Sans, sans-serif;
	color: #525252;
}

/* 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: #F95937;
}
.typography a:visited {
	color: #8D4B3D;
}
.typography a:hover {
	color: #FF5F34;
	text-decoration: none;
}

/* LIST STYLES 
-------------------------------------------- */
.typography ul, .typography ol {
	margin: 15px 0 15px 30px;
	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;
}
.typography ul li {
	list-style: none;
}
.typography ul li:before {
	content: "•";
	margin-left: -16px;
	margin-right: 10px;
}

/* HEADER STYLES
-------------------------------------------- */
h1 {
	font: bold 33px PT Sans, sans-serif;
	margin: 0 0 15px;	
}
.typography h1,
.typography .like-h1 {
	font: bold 33px PT Sans, sans-serif;
	margin: 0 0 15px;
}
.typography h2,
.typography .like-h2 {
	font: bold 26px PT Sans, sans-serif;
	margin: 15px 0;
}
.typography h3,
.typography .like-h3 {
	font: bold 23px PT Sans, sans-serif;
	margin: 15px 0;
}
.typography h4 {
	font: bold 20px PT Sans, sans-serif;
	margin: 15px 0;
}
h5 {
	font: bold 17px PT Sans, sans-serif;
	margin: 15px 0 20px;	
}

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

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