/* ************** ALLGEMEINE FORMATIERUNGEN *********************
*****************************************************************/


*{
	margin: 0px;
	padding: 0px;
}

html, body{
  background: #FFF;
  height: 1050px;
}

/* ************************** TYPO ****************************
*****************************************************************/

 body{
	font-family: Arial, sans-serif;
	font-size: 12px;
	color: #FFF;
}

p{
	margin-top: 20px;
}

h1 {
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 40px;
	text-align:center;
	font-weight: 700;
	line-height: 200px;
	color: #FFF;
	text-shadow: 1px 1px 0px #000000;
}

h2 {
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #FFF;
	text-shadow: 1px 1px 0px #000000;
}


footer{
	text-align: center;
	line-height: 43px;
	font-size: 10px;
}
	

a.hyberlink:link {
    color: #ffffff;
    
}
a.hyberlink:visited {
    color: #ffffff;
    
}

a.hyberlink:active {
    color: #ffffff;
    
}

a.hyberlink:hover {
    color: #aaaaaa;
    
}

	

/* ************************** LAYOUT ****************************
*****************************************************************/

#wrapper{
  width: 1050px;
  margin: 0 auto;
  /* min-height: 1050px; */
  height:auto !important;
  height:1050px;
  overflow: hidden !important; /* FF Scroll-leiste */ 
  background: #363636;
}

#main-header{
  width: 1050px;
  height:200px;
  float:left;
}

#main-navigation{
	width: 1050px;
	height: 42px;
	float:left;
	background: #666666; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #666666 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0px,#ffffff), color-stop(100%,#666666)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%,#666666 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%,#666666 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#666666 100%); /* IE10+ */
	background: linear-gradient(top, #ffffff 0%,#666666 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#666666',GradientType=0 ); /* IE6-9 */
	
	border-bottom: 1px solid #CECED1;
}

#headerbild{
	/* background:url(../images/headerbild.png); */
        background-color #000000;
	background-repeat:no-repeat;
	width: 1050px;
	height: 80px;
	float:left;
}

#content{
	width: 1050px;
	padding: 20px;
	float:left;
}

footer{
	width: 1050px;
	height: 42px;
	background: #363636;
	border-top: 1px solid #CDCDCD;
	float:left;
}
	

/* ************************** NAVIGATION ************************
*****************************************************************/

#main-navigation .menu{
	list-style-type: none;
	width: 1050px;
}

#main-navigation .menu li a{
	width: 173px;
	height: 42px;
	display: block;
	float:left;
	
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 42px;
	text-align:center;
	color: #FFF;
	text-decoration: none;
	
	text-shadow: 1px 1px 0px #000000;
	
	border-right: 1px solid #CCCCCC;
	border-left: 1px solid #666666;
	
	webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	-ms-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
}


#main-navigation .menu li:first-child a{
  	border-left: none;
	width: 174px;
}

#main-navigation .menu li:last-child a{
  	border-right: none;
	width: 174px;
}

#main-navigation .menu li a:hover{
	background-color: rgba(51, 51, 51, 0.3);
	
	-webkit-transition: all 400ms ease-in;
	-moz-transition: all 400ms ease-in;
	-ms-transition: all 400ms ease-in;
	-o-transition: all 400ms ease-in;
	transition: all 400ms ease-in;
}


