/* GENERIC STYLES 
-------------------------------------------- */
 
.typography * {
	color: #CCCCCC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height:18px;
	letter-spacing:.05em;
	text-decoration: none;
}

/* Eigene Styles
-------------------------------------------- */
.typography .normalText { 
	
}

.typography .orangeText {
 	color: #FF6f3e;
}

.typography .orangeBoldText {
 	color: #FF6f3e;
	font-weight: bold;
}


/* PARAGRAPHS 
-------------------------------------------- */
.typography p { 

}

.typography table p {
	margin-top: 0px; 
}

.typography hr	{
	height: 24px;
	top: auto;
	bottom: auto;
	margin: auto;
	padding: 0px;
	width: 100%;
	background-image: url(../images/linie.gif);
	background-repeat: no-repeat;
	background-position: left center;
	border-width: 0px;
}

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

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

.typography a { 
 	color: #FF6f3e !important;
	text-decoration: none !important;
}
	.typography a:hover { 
 		color: #FFFFFF !important;
		text-decoration: none;
	}

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

/* LIST STYLES 
-------------------------------------------- */
.typography ul, 
.typography ol {
	
}
	.typography li {
		
	}
		.typography li li {
			
		}
		
/* HEADER STYLES 
-------------------------------------------- */
.typography h2 {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #ff6f3e;
}
.typography h3 {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #ff6f3e;
}
.typography h6, .typography h6 * {
	font-size: 11px;
}
.typography h6	{
	font-weight: normal;
}


/* PRE STYLES 
-------------------------------------------- */	
.typography pre {
	
}

/* TABLE STYLING 
-------------------------------------------- */
.typography table {
	margin: 0px;
	padding: 0px;
}

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