/**
* Headlines
*/
.typography h1, 
.typography h2, 
.typography h4, 
.typography h5, 
.typography h6 {
	font-size:				1.1em;
	margin-bottom:			10px;
	text-transform:			uppercase;
	color:					#004580;
    font-weight:            normal;
}

.typography h3 {
	font-size:				1em;
	margin-bottom:			10px;
	text-transform:			none;
	color:					#004580;
}


/**
* Paragraph
**/
.typography p {
	margin-bottom:			1em;
	color:					#004580;
	line-height:			1.3em;
}

/**
* Links
*/
.typography a {
	text-decoration:		none;
	color:					#1097d1;
}

.typography a:hover {
	text-decoration:		underline;
}

/**
* 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:				10px 0px 0px 10px;
	color:				#004580;
	list-style-type:	none;
}

.typography ul li, .typography ol li {
	margin:				0px 10px;
	padding-left:		10px;
	color:				#004580;
	padding-bottom:		4px;
	background:			url(../images/bg_li.png) no-repeat 0px 8px;
}

 
