@charset "UTF-8";



/* GENERIC STYLES 
-------------------------------------------- */
 .typography * {
	font-family: Arial, Helvetica, sans-serif;
}

/* PARAGRAPHS 
-------------------------------------------- */
.typography p{
	font-size: 12px;
	line-height:16px;
	margin-bottom:16px;

}

/*
daraus ergibt sich ein margin-bottom:

  line-height:  16px;
- font-size:    12px;
-----------------------
                 4px
/2 (oben-unten)
-----------------------
				 2px
+ margin-bottom: 16px;
-----------------------			
				 18px (abstand zum nächsten container)


margin-bottom: 18px - ((lineheight - fontsize)/2)

*/

/* 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 #6f6f6f solid;
}


/*HEADINGS
-------------------------------------------------------- */


.typography h1,
.typography h2,
.typography h3,
.typography h1 *,
.typography h2 *,
.typography h3 * {
font-family: Georgia, "Times New Roman", Times, serif;	
}


h1{
	font-size:16px;
	font-weight:bold;
	line-height:22px;
	margin-bottom:12px;

}

h2{
	font-size:14px;
	font-weight:bold;
	line-height:20px;
	margin-bottom:12px;
	
}

h3{
	font-size:12px;
	font-weight:bold;
	line-height:16px;
	margin-bottom:16px;
}

h4{
	font-size:12px;
	font-weight:bold;
	line-height:16px;
	margin-bottom:16px;
}

h5{
	color:#4b4b4b;
	font-size:12px;
	line-height:16px;
	margin-bottom:16px;
}

h6{
	color:#4b4b4b;
}






/*LINKS
-------------------------------------------------------- */
.typography a{
	color:#000;
	text-decoration:underline;
}

.typography h1 a,
.typography h2 a,
.typography h3 a {
	color: #6f6f6f;
}

.typography a:hover{
	text-decoration:none;
}

	/* LINK ICONS - shows type of file
	------------------------------------ */
	.typography a[href$=".pdf"],
	.typography a[href$=".PDF"],
	.typography a.pdf {
		padding: 2px;
		padding-left: 20px;
		background: url(icons/page_white_acrobat.png) no-repeat left center;
	}
	.typography a[href$=".doc"],
	.typography a[href$=".DOC"],
	.typography a.doc {
		padding: 2px;
		padding-left: 20px;
		background: url(icons/page_word.png) no-repeat left center;
	}
	.typography a[href$=".xls"],
	.typography a[href$=".XLS"],
	.typography a.xls {
		padding: 2px;
		padding-left: 20px;
		background: url(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(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(icons/application.png) no-repeat left center;
	}
	
/* LIST STYLES 
-------------------------------------------- */

.typography ul, 
.typography ol {
	
	margin: 0 0 16px 0;
}

.typography ul ul,
.typography ul ol, 
.typography ol ul,
.typography ol ol {
	margin-bottom:0;
}

.typography li {
	/*margin: 0 0 0 1.5em;*/
	margin: 0 0 0 16px;
}
.typography li li {
}

/* PRE STYLES 
-------------------------------------------- */	
.typography pre {
	font-family:"Courier New",Courier;
	display:block;
	margin:2em 5em;
	padding:0.5em;
	border:1px #6f6f6f solid;
	background:#FFFFFF;
}

/* TABLE STYLING 
-------------------------------------------- */
.typography table {
	margin: 0 0 16px 0;
	font-size: 12px;
	border-collapse:collapse;
}
.typography tr {}
	
.typography td {
	border:1px solid #6f6f6f;
	border:none;
	padding:5px;
	padding:0 10px 10px 0;
}

.typography caption, 
.typography th,
.typography td {
	text-align: left;
	vertical-align: top;
	font-weight: normal;
}

/* 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 div.image.right,
.typography div.captionImage.right {
	float: right;
	margin-left: 20px;
}
	
.typography .captionImage {
	border: 1px solid #aaa;
	padding: 5px;
}
	
.typography div.image.left,
.typography div.captionImage.left {
	float: left;
}
.typography div.image.leftAlone,
.typography div.captionImage.leftAlone {
	float: left;
	margin-right: 100%;
}
.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;
}
