.Stil1 {
	font-size: 16px;
	font-weight: bold;
}
.Stil4 {
	font-size: x-small;
	color: #CC0000;
}
.Stil6 {
	font-size: small;
}
.Stil5 {
			color: #CC0000;
			font-weight: bold;
}
.Stil6 {
			font-size: 14px
}
.Stil9 {
			font-size: 16px;
			font-weight: bold;
}
.Stil7 {color: #FFFFFF}
.Stil7 {
	color: #000000;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}
.Stil8 {color: #FFFFFF}
.Stil9 {
	font-size: 16px;
	font-weight: bold;
}

/* ######################################## */
/* ###	CSS: layout.css					###	*/
/* ###									###	*/
/* ###									###	*/
/* ######################################## */
/* Order: 	1. overflow, float...
			2. position
			3. margin, padding
			4. witdh, height
			5. border
			6. background
			7. font...
*/

/*/// Basic Settings ///*/
/*/// Abstände auf 0, Schriftstandards ///*/
* {
	margin: 0;
    padding: 0;
}

/*#####################################*/
/*########## Layout Settings ##########*/
/*#####################################*/

/*/// Abstan auf 10px zur Distanzierung ///*/
body {
	background-color: #C4996D;
	text-align: center;
	padding: 10px;

	font-size: 13px;
    font-family: Helvetica, Arial, Geneva, sans-serif;
    color: #000;
}

/*/// mittig Ausrichten, maximale und minimale Breite ///*/
div#container {
	width: 955px;
	margin: 0 auto; /* TODO: lte IE6 kanns nicht */
	height: 760px;
}
div#left{
	width: 165px;
	height: 760px;
	background-image: url(../images/links_frei.jpg);
	background-position: bottom right;
	float: left;
}
div#middle{
	width: 623px;
	height: 758px;
	float: left;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
}
div#middle_top{
	width: auto;
	height: 100px;
}
div#middle_top_title{
	width: auto;
	padding: 10px;
	color: #CC0000;
	font-weight: bold;
	font-size: 18px;
}
div#middle_top_message{
	width: auto;
	padding: 5px;
	font-size: 14px;

	color: #000;
}
div#navigation{
	width: auto;
	/*38*/
	height: 28px;
	font-size: 12px;
	padding: 5px;

	color: #000;

	/*border-bottom: 1px solid #e3e3e3;
	border-top: 1px solid #e3e3e3;*/
}
div#content{
	margin: 0 -1px 0 -1px;
	padding: 10px 10px 10px 10px;
	width: auto;
	min-height: 600px;
	text-align: left;
	position: relative;

	border-left: 1px solid #000;
	border-right: 1px solid #000;
}
div.content_background{
	background-image: url(../images/hgtext.jpg);
	background-repeat: repeat-y;
	background-position: center top;
}

div#content_main{
	width: auto;
}
div#bottom_spacer {
	width: auto;
	height: 300px;
}
div#content_bottom_left{
	width: 311px;
	position: absolute;
	bottom: 0px;
	left: 0px;
}
div#content_bottom_right{
	width: 171px;
	height: 110px;

	padding: 160px 30px 30px 110px;

	position: absolute;
	bottom: 0px;
	right: 0px;
	color: #FFFFFF;

	background-image: url(../images/hand.png);
	background-position: top right;
	background-repeat: no-repeat;
}

div#footer {
	padding: 3px 10px;
	margin: 0 -1px 0 -1px;

	width: auto;
	height: 21px;

	border-top: 1px solid #000;

	font-size: 10px;
}

div#right{
	width: 165px;
	height: 760px;

	background-image: url(../images/rechts_frei.jpg);
	background-position: bottom left;
	float: left;
}

/*########## Float-Cleaner ##########*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

	/* Hide from IE-mac \*/
	   * html .clearfix {height: 1%;}
	   .clearfix {display: block;}
	/* hide from IE-mac END */

/*########## Float-Cleaner END ##########*/
