/*
Objekte zentrieren
*/
.center
	{

	margin: auto;

	}
/*
Textausrichtung und -formatierung
*/
.leftText
	{

	text-align: left;

	}
.centerText
	{

	text-align: center;

	}
.rightText
	{

	text-align: right;

	}
.topText
	{

	vertical-align: top;

	}
.bottomText
	{

	vertical-align: bottom;

	}
.boldText
	{

	font-weight: bold;

	}
.italicText
	{

	font-style: italic;

	}
.underlinedText
	{

	text-decoration: underline !important;/* <- wichtig bei a-Tags*/

	}
.inactiveText
	{

	color: #ccc;

	}
.topSpace
	{

	margin-top: 10px;

	}
.bottomSpace
	{

	margin-bottom: 10px;

	}
.leftSpace
	{

	margin-left: 10px;

	}
.rightSpace
	{

	margin-right: 10px;

	}
.littleTopSpace
	{

	margin-top: 5px;

	}
.littleBottomSpace
	{

	margin-bottom: 5px;

	}
.littleLeftSpace
	{

	margin-left: 5px;

	}
.littleRightSpace
	{

	margin-right: 5px;

	}
.normalFloat
	{

	clear: both;

	}
.leftFloat
	{

	float: left;

	}
.rightFloat
	{

	float: right;

	}