/**
* Headlines
*/
.typography h1, 
.typography h2, 
.typography h3, 
.typography h4, 
.typography h5, 
.typography h6 {
	font-size:				small;
	font-weight:			bold;
	margin-bottom:			10px;
}
.typography h2 {
	font-size:				1.3em;
	font-weight:			normal;
}
.typography h4 {
	color:					#c35e1a;
}

/**
* Paragraph
**/
.typography p {
	margin-bottom:			10px;
	font-size:				1.1em;
	line-height:			1.5em;
}

.typography p.seperator {
	background:				#c35e1a;
	height:					1px;
	padding:				0px;
	margin:					20px 0px;
}
/**
* Links
*/
.typography a {
	text-decoration:		underline;
	color:					#1a171b;
}

.typography a:hover {
	color:					#c35e1a;
}

/**
* Image alignment
*/
.typography img.right {
	float:				right;
	padding:			0px 0px 10px 10px;
}

.typography img.left {
	float:				left;
	padding:			0px 10px 10px 0px;
}

.typography img.leftAlone {
	display:			block;
	margin:				0px 0px 20px 0px;
}

.typography img.center {
	float:				none;
	margin-left:		auto;
	margin-right:		auto;
	margin-bottom:		20px;
	display:			block;
}

/**
* Other alignments used in the wysiwyg editor
*/
.typography .left {
	text-align:			left;
}
.typography .center {
	text-align:			center;
}
.typography .right {
	text-align:			right;
}

/**
* Lists
*/
.typography  ul, .typography ol {
	margin:				20px;
}

.typography ul li, .typography ol li {
	margin:				0px 10px;
}