
/*  TYPOGRAPHY  */

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

.typography p { 
	margin: 0 0 8px 0;
}

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

.typography a { 
 	text-decoration: underline;
}
	.typography a:hover { 
 		text-decoration: none; 
	}

	/* ----- LINK ICONS - shows type of file ----- */
	
	.typography a[href$=".pdf"],
	.typography a[href$=".PDF"],
	.typography a.pdf {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_white_acrobat.png) no-repeat left center;
	}
	.typography a[href$=".doc"],
	.typography a[href$=".docx"],
	.typography a[href$=".DOC"],
	.typography a.doc {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_word.png) no-repeat left center;
	}
	.typography a[href$=".xls"],
	.typography a[href$=".XLS"],
	.typography a.xls {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_excel.png) no-repeat left center;
	}
	.typography a[href$=".gz"],
	.typography a[href$=".GZ"],
	.typography a[href$=".gzip"],
	.typography a[href$=".GZIP"],
	.typography a[href$=".zip"],
	.typography a[href$=".ZIP"],
	.typography a.archive {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_white_zip.png) no-repeat left center;
	}
	.typography a[href$=".exe"],
	.typography a[href$=".EXE"],
	.typography a.application {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/application.png) no-repeat left center;
	}

		
/* HEADER STYLES 
-------------------------------------------- */

	.typography.blue h1,
	.typography.blue h2,
	.typography.blue h3,
	.typography.blue h4,
	.typography.blue h5,
	.typography.blue h6 {
		color: #1e5f82 !important;
	}
	.typography.yellow h1,
	.typography.yellow h2,
	.typography.yellow h3,
	.typography.yellow h4,
	.typography.yellow h5,
	.typography.yellow h6 {
		color: #d09a5b !important;
	}
	.typography.green h1,
	.typography.green h2,
	.typography.green h3,
	.typography.green h4,
	.typography.green h5,
	.typography.green h6 {
		color: #41653e !important;
	}
	.typography.red h1,
	.typography.red h2,
	.typography.red h3,
	.typography.red h4,
	.typography.red h5,
	.typography.red h6 {
		color: #bf2830 !important;
	}
	.typography.purple h1,
	.typography.purple h2,
	.typography.purple h3,
	.typography.purple h4,
	.typography.purple h5,
	.typography.purple h6 {
		color: #4e477a !important;
	}
.typography h1 {
	font-size: 30px;
	line-height: 34px;
	font-weight: normal;
	margin: 0 0 15px 0;
	color: #449aaf;
}
.typography h2 { 
 	font-size: 24px;
	line-height: 28px;
	font-weight: normal;
	margin: 0 0 10px 0;
}	
.typography h3 {
	font-size: 20px;
	line-height: 28px;
	font-weight: normal;
	margin: 10px 0 10px 0;
}
.typography h4 {
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	margin: 0 0 5px 0;
}
.typography h5 {
	font-size: 16px;
	font-weight: normal;
	margin: 0 0 5px 0;
	text-transform: uppercase;
}
.typography h6 {
	font-size: 14px;
	font-weight: normal;
	margin: 0 0 5px 0;
	text-transform: uppercase;
}



/* ----- PRE STYLES ----- */	

.typography pre {
	font-family: "Courier New", Courier;
	display: block;
	margin: 5px 10px;
	padding: 2px;
	border: 1px #cccccc solid;
	background: #333333;
}

/* ----- LIST STYLING ----- */

.typography ul, 
.typography ol {
	padding-left: 20px;
	margin: 0 0 8px 0;
}
	.typography li {
	}

/* ----- TABLE STYLING ----- */

.typography table {
	border-collapse: collapse;
}
.typography table td, 
.typography table th {
	vertical-align: top;
}


/* ----- WYSIWYG EDITOR ALIGNMENT CLASSES ----- */

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

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

.typography img {
	border: none;
}
	.typography img.right {
		float: right;
		margin-left: 20px;
		margin-bottom: 20px;
	}
	.typography img.left {
		float: left;
		margin-right: 20px;
		margin-bottom: 20px;
	}
	.typography img.leftAlone {
		display: block;
		margin-bottom: 20px;
	}
	.typography img.center {
		float: none;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}

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

.typography .captionImage.leftAlone img.leftAlone {
	display: block;
	margin-bottom: 0;
}

.typography .captionImage.center {
	margin: 0 auto;
}

