/* Comment in CSS */

.body1{
		color:#ffffff; /* Text color */
		font-family:"Arial", "Georgia" ; /* Use system fonts */
		font-size: 9pt;
		font-weight: regular;
		margin-left: 10px;
		margin-right: 10px;
	}
	
.italic1{
		color:#777788; /* Text color */
		font-style: italic;
	}
	
	
	
.examples{
		color:#44FF00; /* Text color */
		font-family:"Georgia", "Arial"; /* Use system fonts */
		font-size: 12pt; /* Sizes can be described with pt, em, px, or % */
		font-style: italic;
		font-weight: bold;
		letter-spacing: 1px; /* Space between letters */
		word-spacing: 2px; /* Space between words */
		line-height: 120%; /* Leading - Space between lines */
		text-indent: 25px; /* First line Space from left edge */
		margin-left: 100px; /* Space from left edge */
		text-align: center; /* Alignment on page, or inside box center, left, or right */
		margin-top: 100px; /* Space above paragraph */
		margin-bottom: 100px; /* Space below paragaph */
		<p align="justify">Dies ist ein Absatz, der im Blocksatz ausgerichtet ist ...</p>

		}
.h2{
        color:#ffffff; /* Text color */
		font-family:"Arial", "Georgia" ; /* Use system fonts */
		font-size: 12pt;
		font-weight: regular;
		margin-left: 0px;
		margin-right: 10px;
	}