/* 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: Georgia, serif;
}

/* PARAGRAPHS 
-------------------------------------------- */

.typography p { 
	color:#808080;
 	margin:0 0 16px;
	font-size:13px;
	line-height:1.4;
}

.HomePage .typography p{
	font-size:18px;
}

p#Copy{
	font-size:11px;
}

/* QUOTES
-------------------------------------------- */
.typography blockquote {
	margin: 10px;
	font-style: italic;
}	
.typography q {
	display:block;
	margin: 10px;
}

/* LIST STYLES 
-------------------------------------------- */

.typography ul, 
.typography ol {
	margin: 0 0 18px 24px;
	color:#808080;
	font-size:13px;
	line-height:1.4;
}

.typography ul li {
	list-style-type:disc;
	margin:0 0 6px;
}
		
/* HEADER STYLES 
-------------------------------------------- */

h1, .typography h1 {
	font:21px Georgia, serif;
	line-height:1.1;
	margin:0 0 10px;
}

h2, .typography h2{
	font-size:14px;
	font-weight:bold;
	margin:0 0 12px;
}

.aside h2{
	color:#333;
}


h3, .typography h3{
	color:#808080;
 	margin:0 0 10px;
	font-size:13px;
	font-weight:bold;
	line-height:1.4;
}

/* 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 img.right,
.typography div.image.right,
.typography div.captionImage.right {
	float: right;
	margin:0 0 8px 20px;
}

.typography .captionImage {
	border: 1px solid #aaa;
	padding: 5px;
}

.typography img.left,
.typography div.image.left,
.typography div.captionImage.left {
	float: left;
	margin:0 20px 8px 0;
}

.typography img.leftAlone,
.typography div.image.leftAlone,
.typography div.captionImage.leftAlone {
	display:block;
	margin:0 0 8px;
}

.typography img.center,
.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;
}