/* Zeichenformate */
.wichtig {
	color: red;
	font-weight: bold;
}
.gestrichen {
	text-decoration: line-through;
}
.unterstrichen {
	text-decoration: underline;
}

/* Absatzformate */
p.linksbuendig {
	text-align: left;
}
p.rechtsbuendig {
	text-align: right;
}
p.zentriert {
	text-align: center;
}
p.blocksatz {
	text-align: justify;
}