/** 
 * SilverStripe Balance Theme
 * http://www.silverstripe.com
 *
 * 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, Helvetica; 
}

/* PARAGRAPHS */

.typography p { 
 	color: #666;
 	line-height: 1.25em;
 	font-size: 0.9em;
	
}


/* QUOTES */

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


/* LINKS */

.typography a { 
 	color: #000000;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration:none;
}
	.typography a:hover { 
 	color: #ff0000;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration:none;
	}
	
a.navi:link {
	color: #ffffff;
	font-size: 11px;
	font-weight: normal;
	text-transform: uppercase;
	padding-top: 20px;
	padding-left: 4px;
	padding-right: 4px;
	clear: both;
}
	
a.navi:hover {
	color: #ff0000;
	font-size: 11px;
	font-weight: normal;
	text-transform: uppercase;
	padding-top: 20px;
	padding-left: 4px;
	padding-right: 4px;
	clear: both;
}
	
/* LIST STYLES */

.typography ul, 
.typography ol {
	margin: 0 0 18px 24px;
	color: #666;
}
	.typography li {
		margin: 5px 10px;
		font-size: 0.85em;
	}
		.typography li li {
			font-size: 0.9em;
			margin: 10px 5px;
		}
		
		
/* HEADER STYLES  */

.typography h1,
.typography h2 { 
	color: #ffffff;
	font-size: 2em;
	font-weight: bold;
	font-family: Arial, Helvetica; 
}
	#Layout .typography h1,
	#Layout .typography h2  {
		text-align: center;
	}
.typography h1 {
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	padding-left: 4px;
	padding-top: 4px;
	
}
.typography h2 {
	color: #ffffff;
	font-size: 11px;
	font-weight: normal;
	text-transform: uppercase;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 0px;
	clear: both;
}	

.typography h3 {
	color: #ffffff;
	font-size: 13px;
	font-weight: normal;
	text-transform: uppercase;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 20px;
	clear: both;
}
.typography h4 {
	color: #ffffff;
	font-size: 9px;
	font-weight: normal;
	text-transform: uppercase;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 0px;
	clear: both;
}
.typography h5 {
	color: #ffffff;
	font-size: 8px;
	font-weight: normal;
	text-transform: uppercase;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 0px;
	clear: both;
}
.typography h6 {
	color: #ffffff;
	font-size: 7px;
	font-weight: normal;
	text-transform: uppercase;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 0px;
	clear: both;
}


/* PRE STYLES  */	

.typography pre {
	font-family:Arial, Helvetica;
	display:block;
	font-size:1.2em;
	margin:2em 5em;
	padding:0.5em;
	border:1px #ccc solid;
	background:#eee;;
}



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