/** 
 * CCIQ Marketing Website
 *
 * Typography classes
 *
 *	1.  Generic	
 *	2.  Header
 *  3.  Paragraphs
 *	4.  Quotes
 *	5.  Link Icons
 *	6.  List
 *	7.  Pre
 *	8.  Tables
 * 	9.  WYSIWYG Editor Alignment
 * 	10. Images
 *
 *
/* Generic
-------------------------------------------- */

.typography * {
	color: #103B60;
	font-family: Verdana, Lucida, Arial, sans-serif; 
}

a, a:visited, .typography a, .typography a:visited {
	color: #F69F02;
	text-decoration: none;
}

a:hover, .typography a:hover {
	color: #F69F02;
	text-decoration: none;
} 

/* Header Styles
-------------------------------------------- */
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
	color: #103B60;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Mako', sans-serif;
	margin: 0 0 5px 0;
	text-transform: none;		
}

.typography h1{font-size: 30px;}
.typography h2{font-size: 26px;}	
.typography h3{font-size: 22px;}
.typography h4{font-size: 20px;}
.typography h5{font-size: 16px;}
.typography h6{color: #F69F02; }

/* Paragraphs
-------------------------------------------- */
.typography p { 
 	font-size: 13px;
	margin: 0 0 15px 0;
}

	.typography p.highlight {
		font-family: 'Mako', sans-serif;
		font-size: 18px;
		line-height: 24px;
		font-weight: 400;
	}

/* Quotes
-------------------------------------------- */
.typography blockquote {
	margin: 10px;
	font-size: 1.4em;
	color: #777;
	font-style: italic;
}	
.typography q {
	display:block;
	font-size: 0.8em;
	margin: 1em 1em;
	padding: 0.5em;
	border: 1px #ccc solid;
}

/* 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$=".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;
}

/* List Styles
-------------------------------------------- */
.typography ul, 
.typography ol {
	margin: 0 0 10px 18px;	
	color: #333333 !important;
}

/* IE 6 fix */
* html .typography ul, 
* html .typography ol {
	margin: 0 0 10px 0 !important;	
}

	.typography li {
		margin: 0 !important;			
		padding: 0 0 2px 0 !important;
		height: auto !important;
		min-height: 0 !important;
	}

	
/* Pre
-------------------------------------------- */	
.typography pre {
	font-family:"Courier New",Courier;
	display:block;
	font-size:12px;
	margin: 10px;
	padding:10px;
	border:1px #ccc solid;
	background:#eee;;
}

/* Tables
-------------------------------------------- */
.typography table {
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
}
.typography caption,
.typography th,
.typography td {
	text-align: left;
	font-weight: normal;
	border: 1px solid  #CDC9C6;	
	padding: 2px 14px 4px 14px;
}

.typography th {
	background-color: #CDC9C6;
	font-weight: 600;	
}

/* WYSIWYG Editor Alignment Classes
-------------------------------------------- */
.typography .left {
	text-align: left;
}
.typography .center {
	text-align: center;
}
.typography .right {
	text-align: right;
}

/* Images
-------------------------------------------- */
.typography img.right {
	float: right;
	margin-left: 20px;
}
.typography img.left {
	float: left;
}
.typography img.leftAlone {
	float: left;
	margin-right: 100%;
}
.typography img.center {
	float: none;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

/* Custom
-------------------------------------------- */
p.yellow-lines {
    border-top: 1px solid #FDECCD;
    border-bottom: 1px solid #FDECCD;
    padding: 10px 0 10px 0;
}