
/*  TYPOGRAPHY  */

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

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

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

.typography a { 
 	border-bottom: solid 1px #ffa200;
	text-decoration: none; 
}
	.typography a:hover { 
 		text-decoration: none; 
		border-bottom: 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 h1 {
	color: #d6083b; /* pink */
	font-size: 20px;
	font-weight: normal;
	margin: 0 0 10px 0;
}
.typography h2 { 
	color: #000036; /* black-ish */
 	font-size: 16px;
	font-weight: normal;
	margin: 0 0 10px 0;
	padding-top: 4px;
}	
.typography h3 {
	color: #FFA200; /* orange */
	font-size: 14px;
	font-weight: normal;
	margin: 5px 0 5px 0;
}
.typography h4 {
	color: #d6083b; /* pink */
	font-size: 14px;
	font-weight: normal;
	margin: 0 0 5px 0;
}
.typography h5 {
	color: #000036; /* black-ish */
	font-size: 14px;
	font-weight: normal;
	margin: 0 0 5px 0;
}
.typography h6 {
	color: #000;
	font-size: 12px;
	font-weight: normal;
	margin: 0 0 5px 0;
}

.pink {
	color: #d6083b;
}
.subTitle {
	color: #d6083b !important;
}


/* ----- 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;
}

/* ----- STYLED TABLES ----- */	

.styledTable {
	background: #e5eaef;
	border-bottom: solid 6px #a0b1c4;
	padding: 10px;
	width: 80%;
	color: #000036;
}
.styledTable th, 
.styledTable td {
	padding: 10px;
}
.styledTable a {
	color: #000036;
	border-bottom: 1px solid #000036;
	text-decoration: none;
}
.styledTable h2 {
	padding-top: 0 !important;
}

/* ----- 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;
}

