/**
 * Typography
 *
 * Modified from SilverStripe Blackcandy Theme. 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.
 *
 * @copyright 2009, Better Brief LLP
 * @author Dan Hensby <dan@betterbrief.co.uk>
 *
 */

 
/* GENERIC STYLES 
-------------------------------------------- */
.typography {
	font-family: 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
}

/* PARAGRAPHS 
-------------------------------------------- */
.typography p {
	width: 595px;
	margin: 7px 0;
}

/* QUOTES
-------------------------------------------- */
.typography blockquote {
}	
.typography q {
}

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

.typography a {
	text-decoration: none;
	color: #666;
}
	.typography a:hover {
		color: #000;
		text-decoration: underline;
	}

	/* LINK ICONS - shows type of file
	------------------------------------ */
	.typography a[href$=".pdf"],
	.typography a[href$=".PDF"],
	.typography a.pdf {
		padding: 2px;
		padding-left: 10px;
		background: url(../images/icons/page_white_acrobat.png) no-repeat left center;
	}
	.typography a[href$=".doc"],
	.typography a[href$=".DOC"],
	.typography a[href$=".docx"],
	.typography a[href$=".DOCX"],
	.typography a.doc {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_word.png) no-repeat left center;
	}
	.typography a[href$=".xls"],
	.typography a[href$=".XLS"],
	.typography a[href$=".xlsx"],
	.typography a[href$=".XLSX"],
	.typography a.xls {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_excel.png) no-repeat left center;
	}
	.typography a[href$=".gz"],
	.typography a[href$=".GZ"],
	.typography a[href$=".gzip"],
	.typography a[href$=".GZIP"],
	.typography a[href$=".zip"],
	.typography a[href$=".ZIP"],
	.typography a.archive {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_white_zip.png) no-repeat left center;
	}
	.typography a[href$=".exe"],
	.typography a[href$=".EXE"],
	.typography a.application {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/application.png) no-repeat left center;
	}
	#CataloguePage .typography a {
		background: 0;
		padding:0;
	}

/* LIST STYLES 
-------------------------------------------- */
.typography ul, 
.typography ol {
}
	.typography li 	{
	}
		.typography li li {
		}
		
/* HEADER STYLES 
-------------------------------------------- */

.typography ,
.typography h2 {
}

.typography h1 {
	font-size: 1.2em;
}
	.typography #Titles h2 {
		font-size: 0.9em;
		display: block;
		margin-top: 7px;
	}
.typography h2 {
	font-size: 1.1em;
	padding: 10px 0;
}
.typography h2 a, .typography h1 a {
	text-decoration: none;
}
.typography h2 a:hover, .typography h1 a:hover {
	text-decoration: underline;
}
.typography h3 {
	padding: 4px 0;
}
.typography h4 {
}
.typography h5 {
}
.typography h6 {
}

/* PRE STYLES 
-------------------------------------------- */	
.typography pre {
	font-family:"Courier New",Courier;
	display:block;
	margin:2em 5em;
	padding:0.5em;
}

/* TABLE STYLING 
-------------------------------------------- */
.typography table {
}
	.typography tr {
	}
	
		.typography td {
		}

/* WYSIWYG EDITOR ALIGNMENT CLASSES 
-------------------------------------------- */
.typography .left {
	text-align: left;
}
.typography .center {
	text-align: center;
}
.typography .right {
	text-align: right;
}

/* IMAGES 
-------------------------------------------- */
.typography img {
	border: 1px solid #888;
}

.typography p 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;
	}
