/** 
 * This typography file is included in the WYSIWYG editor and the front end. It provides
 * a place to add link styles and font styles you would like in the CMS and the Front End.
 */

 
/* GENERIC STYLES 
-------------------------------------------- */
 
.typography * {
	font-family: Tahoma, Verdana, Lucida, Arial, sans-serif; 
}

/* PARAGRAPHS 
-------------------------------------------- */
.typography p { 
 	color: #000;
 	line-height: 14px;
 	font-size: 11px;
	margin: 0 0 12px 0;
}



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

.typography a { 
 	text-decoration: none; 
	color: #3863BC;
}
	.typography a:hover { 
 		text-decoration: underline;
	}

	


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

.typography h1,
.typography h2 { 
	color: #000; 
	margin: 0 0 10px 0;
	font-weight: 300;
	font-family: Tahoma, Verdana, sans-serif;
}

.typography h1 {
	font-size: 20px;
}
.typography h2 { 
 	font-size: 18px; 
 	margin: 0 0 6px 0;
}	
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
	color: #000; 
	margin: 0;
	font-weight: normal;
	font-family: Tahoma, Verdana, sans-serif;
	font-size: 14px;
}



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