/*
  (c) Mediaweb Studio
*/

/* GENERIC STYLES
-------------------------------------------- */
.typography {
	font: 300 16px/1.3 Roboto, sans-serif;
	color: #1B2F3D;
}

/* 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: #0065B3;
	text-decoration: none;
}
.typography a:visited {
	color: #00497F;

}
.typography a:hover {
	color: #00497F;
	text-decoration: underline;
}
.typography a:active {
	color: #0065B3;
	text-decoration: underline;
}

/* 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: 3em;
}
.typography ul ul, .typography ol ol {
	margin-top: 0.3em;
	margin-bottom: 0.3em;
	padding-left: 1.2em;
}


/* HEADER STYLES
-------------------------------------------- */
h1, .like-h1 {
	font: 500 48px Roboto, sans-serif;
	margin: 60px 0 35px;
	color: #6D8393;
}
.like-h1 {
	margin: 35px 0;
}
.typography h2,
.typography .like-h2 {
	font: 500 40px Roboto, sans-serif;
	margin: 20px 0 10px;
	color: #6D8393;
}
.typography h3,
.typography .like-h3 {
	font: 500 32px Roboto, sans-serif;
	margin: 15px 0 5px;
	color: #6D8393;
}
.typography h4,
h4 {
	font: 500 24px Roboto, sans-serif;
	margin: 0 0 15px;
	color: #6D8393;
}
h5 {
	font: 500 20px Roboto, sans-serif;
	margin: 0 0 10px;
	color: #6D8393;
}
.title-h5 {
	color: #1B2F3D;
}

/* 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: #D2ECED;
	text-align: center;
	border: 1px solid #6D8494;
	padding: 7px 32px;
}
.typography td {
	border: 1px solid #6D8494;
	padding: 10px 32px;
	vertical-align: top;
	font-size: 16px;
	background-color: transparent;
}
.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;
}