/* 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: Arial, sans-serif;
	color:#333;
	font-size: 13px;
}

/* PARAGRAPHS 
-------------------------------------------- */

.typography p { 
 	color: #333;
 	line-height: 20px;
	margin: 0 0 16px 0;
}

/* QUOTES
-------------------------------------------- */
.typography blockquote {
	margin: 10px;
	font-style: italic;
}	


/* LINKS 
-------------------------------------------- */

.typography a {  
	color: #a72534;
	text-decoration: none;
	border-bottom:1px solid #f0d8d8;
}
.typography a:visited{
	color:#c53d4d;
}
.typography a:hover { 
	color:#861e2a;
}


/* LIST STYLES 
-------------------------------------------- */

.typography ul, 
.typography ol {
	margin: 0 0 18px 24px;
}

.typography li {
	margin: 5px 10px;
	list-style:disc;
}
	
/* HEADER STYLES 
-------------------------------------------- */

.typography h1,
.typography h2 { 
	color: #a72534; 
	margin: 0 0 18px 0;
	font-weight: 300;
	font-family: Tahoma, Verdana, sans-serif;
}

.typography h1 {
	font-size: 24px;
}
.typography h2 { 
 	font-size: 18px;
	color:#851d29;
}	
.typography h3 {
	color: #977c28;
	margin: 0 0 12px 0;
	font-weight: bold;
	font-size: 16px;
}

/* PRE STYLES 
-------------------------------------------- */	

.typography pre {
	font-family:"Courier New",Courier;
	display:block;
	font-size:1.2em;
	margin:2em 5em;
	padding:0.5em;
	border:1px #ccc solid;
	background:#eee;
}

/* TABLE STYLING 
-------------------------------------------- */

.typography table {
	margin: 0 0 18px 0;
	font-size: 11px;
	color: #666;
	border-collapse:collapse;
}
.typography tr {}

.typography td {
	border:1px solid #999;
	padding:5px;
}

/* 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 div.image.right,
.typography div.captionImage.right {
	float: right;
	margin-left: 12px;
}

.typography .captionImage {
	border: 1px solid #aaa;
	padding: 5px;
}

.typography div.image.left,
.typography div.captionImage.left {
	float: left;
	margin-right:12px;
}
.typography div.image.leftAlone,
.typography div.captionImage.leftAlone {
	float: left;
	margin-right: 100%;
}
.typography div.image.center,
.typography div.captionImage.center {
	float: none;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.typography .caption {
	font-weight: bold;
	text-align: center;
	color: #666;
}
