/** 
 * SilverStripe Senda.fr 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: 'Open Sans', sans-serif;
}

/* PARAGRAPHS & HEADINGS
-------------------------------------------- */

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography p
	{
/*	height: 1%; IE 7 hasLayout float problem */
	margin: 5px 5px 15px 5px;
 	color: #4C4C4C /* K-0 */;
	line-height: 1.2;
	}
.typography h1,
.typography h2,
.typography h3,
.typography h4
	{
	color: #0062B3 /* B-0 */;
	word-spacing: 2px;
	}
.typography h1
	{
	font-weight: bold;
	font-size: 16px;
	}
.typography h2
	{
	font-weight: bold;
	font-size: 14px;
	}
.typography h3
	{
	font-weight: bold;
	font-size: 12px;
	}
.typography h4
	{
	font-weight: bold;
	font-size: 12px;
	}
.typography p
	{
	font-size: 12px;
	word-spacing: 1.5px;
	line-height: 1.5;
	}

/* LIST STYLES 
-------------------------------------------- */
.typography ul,
.typography ol
	{
	margin: 0px 5px 15px 5px;
	}
.typography ul ul,
.typography ol ol,
.typography ul ol,
.typography ol ul
	{
	margin: 10px 5px 0px 20px;
	}
.typography ul ul,
.typography ol ol,
.typography ul ol,
.typography ol ul
	{
	margin: 10px 5px 15px 20px;
	}
.typography li
	{
	margin-bottom: 10px;
	font-size: 12px;
	word-spacing: 1.5px;
	}
.typography ul li
	{
	display: block;
	padding-left: 20px;
	list-style-type: none;
	list-style-position: outside;
	background: url(../images/ic_LiBullet.html) no-repeat;
	}
.typography ol li
	{
	list-style-position: inside;
	}

.typography .Separator
	{
	float: left;
	clear: both;
	height: 15px;
	width: 100%;
	margin: 0;
	border: none;
	padding: 0;
	}
* html .typography .Separator
	{
	margin-right: -3px;
	overflow: hidden;
	}





/* QUOTES
-------------------------------------------- */
.typography blockquote {
	margin: 10px;
	font-size: 1.4em;
	color: #828282 /* K-1 */;
	font-style: italic;
}	
.typography q {
	display:block;
	font-size: 0.8em;
	margin: 1em 1em;
	padding: 0.5em;
	border: 1px #BDBDBD /* W+1 */ solid;
}

/* LINKS 
-------------------------------------------- */

.typography a { 
 	text-decoration: none; 
	color: #0062B3 /* B-0 */;
}
	.typography a:hover { 
 		text-decoration: underline;
	}

	/* LINK ICONS - shows type of file
	------------------------------------ */
	.typography a[href$=".pdf"],
	.typography a[href$=".PDF"],
	.typography a.pdf {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_white_acrobat.html) no-repeat left center;
	}
	.typography a[href$=".doc"],
	.typography a[href$=".DOC"],
	.typography a.doc {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_word.html) no-repeat left center;
	}
	.typography a[href$=".xls"],
	.typography a[href$=".XLS"],
	.typography a.xls {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_excel.html) 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.html) 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.html) no-repeat left center;
	}

/* PRE STYLES 
-------------------------------------------- */	
.typography pre {
	font-family: 'Courier New', Courier;
	display:block;
	font-size:1.2em;
	margin:2em 5em;
	padding:0.5em;
	border:1px #BDBDBD /* W+1 */ solid;
	background:#eee;;
}

.typography span {
	margin: 0;
}

/* TABLE STYLING 
-------------------------------------------- */
.typography table {
	margin: 0 0 18px 0;
	font-size: 11px;
	color: #4C4C4C /* K-0 */;
	border-collapse:collapse;
}
	.typography tr {}
	
		.typography td {
			border: none;
			padding:5px;
		}

		.typography table.Bordered td {
			border:1px solid #828282 /* K-1 */;
			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 {
		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;
	}