/**
 * Gospels In Playdough (gospelsinplaydough.com) .typography content styles
 *
 * @package gospelsinplaydough
 */

.typography, .typography * {
	font-family: "Calibri", "Lucida Sans", "Helvetica", "Arial", "Verdana", sans-serif;
}

/** -- PARAGRAPHS --------------------------------------------------------------------------------------------------- */

.typography p {
	color: #383838;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 15px;
}

/** -- LINKS -------------------------------------------------------------------------------------------------------- */

.typography a {
	font-weight: bold;
	color: #16668d;
}

.typography a:hover {
	text-decoration: none;
	color: #3795c2;
}

.typography a:visited {
	text-decoration: none;
	border-bottom: 1px dotted #3795c2;
}

/** -- LISTS -------------------------------------------------------------------------------------------------------- */

.typography ul, .typography ol {
	margin: 0 0 15px 25px;
	color: #383838;
	line-height: 20px;
}

.typography li {
	margin: 6px 0;
	font-size: 15px;
}

/** -- HEADERS ------------------------------------------------------------------------------------------------------ */

.typography h1 {
	color: #07354a;
	font-size: 28px;
	margin-bottom: 15px;
	padding: 0 10px;
	height: 45px;
	line-height: 45px;
	background: url(../images/bg_typography_h1.gif) no-repeat;
}

.typography h2 {
	font-size: 24px;
	color: #17b9e2;
	margin-bottom: 15px;
	border-bottom: 1px dotted #e4e4e4;
}

.typography h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #17b9e2;
}

.typography h4 {
	margin-bottom: 15px;
	font-size: 18px;
	color: #17b9e2;
}

.typography h5 {
	margin-bottom: 15px;
	font-size: 16px;
	color: #17b9e2;
	font-style: italic;
}

.typography h6 {
	margin-bottom: 15px;
	font-size: 16px;
	font-style: italic;
}

/** -- WYSIWYG ALIGNMENT -------------------------------------------------------------------------------------------- */

.typography .left {
	text-align: left;
}

.typography .center {
	text-align: center;
}

.typography .right {
	text-align: right;
}

/** -- IMAGES ------------------------------------------------------------------------------------------------------- */

.typography img {
	padding: 5px;
	border: 1px solid #e5e3d4;
	background: #fffde6;
}

.typography img.right {
	float: right;
	margin-left: 20px;
}

.typography img.left {
	float: left;
	margin-right: 20px;
}

.typography img.center {
	float: none;
	margin: auto;
	display: block;
}