/* 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: Helvetica, Arial, sans-serif;
}

/* PARAGRAPHS 
-------------------------------------------- */

.typography p { 
 	color: #1e1e1e;
 	line-height: 20px;
 	font-size: 13px;
	margin: 0 0 22px 0;
}

.typography .intro p{
	font-size:14px;
	font-weight:bold;
	margin:0 0 26px;
}

.typography .intro-banner {
	margin:0 0 26px;  
}

/* 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;
}

/* LINKS 
-------------------------------------------- */

.typography a, .vcard a:hover{ 
 	text-decoration: none;
	font-weight:bold; 
	color: #fe3547;
}

.typography a:hover, 
.typography a:focus { 
	text-decoration: underline;
}


/* LIST STYLES 
-------------------------------------------- */

.typography ul, 
.typography ol {
	margin: 0 0 18px 24px;
	line-height:1.3;
}

.typography ul li {
	list-style:disc;
}

.typography ol li{
	list-style:decimal;
}

		
/* HEADER STYLES 
-------------------------------------------- */

.typography h1, .HomePage .typography h2{
	font:26px "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif;
	line-height:1.1;
	color:#35be72;
	margin:0 0 18px;
}
.typography h2, .typography h2 a{ 
 	font-size: 18px;
	color:#3f9eb6;
	margin:0 0 22px;
	line-height:1.1;
}

/* 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 .captionImage {
	border: 1px solid #aaa;
	padding: 5px;
}

.typography .caption {
	font-weight: bold;
	text-align: center;
	color: #666;
}

.typography img.right,
.typography .captionImage.right {
	float: right;
	margin: 0 0 20px 20px;
}

.typography img.left,
.typography .captionImage.left {
	float: left;
	margin: 0 20px 20px 0;
}

.typography img.leftAlone,
.typography .captionImage.leftAlone {
	display:block;
	float:none;
}

.typography img.center,
.typography .captionImage.center {
	float: none;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.typography .captionImage img {
  float: none;
  display: inline;
  margin: 0;
}

