@charset "utf-8";
body  {
	font: Verdana, Geneva, sans-serif;
	font-family: Verdana, Geneva, sans-serif;
	background: #661829;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;/* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #661829;
}
a {
	color:#661829;
}
#container {
	width: 600px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height:100%;
	background: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top: 45px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	height:auto;
	
}
#mainMenue {
	background-color:#e6ab26;
	height:30px;
	margin-top:2px;
	width:100%;
}
.mainButton {
	height:30px;
	padding-left:12px;
	padding-right:12px;
	margin-right:2px;
	float:left;
	font-size:13px;
	font-weight:bold;
	line-height:27px;
	vertical-align:middle;
	text-align:center;
	background-color:#e6ab26;
}
.mainButton a {
	text-decoration:none;
}
.mainButton a:hover {
	color:#FFF;
}
.mainButton#Active {
	background-color:#FFF;
}
#mainBlanc {
	background-color:#FFF;
	float:left;
}
.subMenue {
	background-color:#FFF;
	height:30px;
	margin-top:2px;
	text-align:center;
}
.subMenue#ihr {
	padding-left:75px;
}
.subMenue#spiel {
	padding-left:70px;
}
.subButton {
	height:30px;
	padding-left:10px;
	padding-right:10px;
	margin-right:2px;
	background-color:#FFF;
	float:left;
	font-size:13px;
	font-weight:bold;
	line-height:27px;
	vertical-align:middle;
	text-align:center;
}
.subButton a {
	text-decoration:none;
}
.subButton a:hover {
	color:#e6ab26;
}
.subButton#Active {
	color:#e6ab26;
}
#mainContent {
	background-color:#FFF;
	width:510px;
	height:450px;
	padding-right:50px;
	padding-left:40px;
	margin-top:15px;
	overflow:auto;
 /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainSlogan {
	width:100%;
	text-align:right;
	font-size:24px;
	font-style:italic;
	font: "Times New Roman", Times, serif;
	font-family: "Times New Roman", Times, serif;
}
#mainText {
	width:100%;
	margin-top:30px;
	text-align:left;
	font-size:12px;
	line-height:20px;
}
#mainText h1 {
	font-size:14px;
	letter-spacing:1px;
	font-weight:bold;
	line-height:20px;
}
	
#footer {
	margin-top:50px;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#e6ab26;
	text-align:right;
	height:40px;
	font-size:14px;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0;
	text-align:right;/* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:14px;
}
#footer a {
	text-decoration:none;
}
#footer a:hover {
	color:#FFF;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

