html
{
  margin: 0px;
  padding: 0px;
  height: 100%;
}

body
{
  margin: 0px;
  padding: 0px;
  color: black;
  font-size: 16px;
  font-family: 'Lato', sans-serif, arial;
  overflow-y: scroll;
  height: 100%;
  background-color: #bfe0f3;
}

header
{
  margin: 0px;
  padding: 1px;
  height: 200px;
	
  background: url(../images/header.jpg);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: center top;
  
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;        
}

#centered
{
  max-width: 900px;
  margin: 30px auto 0px auto;
  padding: 0px 20px 0px 20px;
  position: relative;  
}
#centered img
{
  margin: 0px;
  height: 160px;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;    
}
nav
{
  position: absolute;
  top: 0px;
  right: 30px;
  margin: 0px;
  padding: 0px;
  height: 100%;
}
nav ul
{
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  display: table;
  height: 100%;
}
nav ul li
{
  margin: 0px;
  padding: 0px 15px;
  display: table-cell;
  text-transform: uppercase;
  height: 100%;
  vertical-align: middle;
}
nav ul li:before
{
  content: none; content: "";
}
nav ul li.selected
{
  color: black;
  text-decoration: underline;  
}
nav ul li a
{
  text-decoration: none;
  font-weight: bold;
  color: black;
  font-size: 17px;
  
  text-shadow: 0px 0px 10px #ffffff;

  -webkit-transition: color 0.3s, text-shadow 0.2s;
  -moz-transition: color 0.3s, text-shadow 0.2s;
  transition: color 0.3s, text-shadow 0.2s;
}
nav ul li a:hover
{
  color: black;
  text-decoration: none;
  text-shadow: 0px 0px 10px #cccccc;  
}
#menumobile
{
  display: none;
}
#content
{
  margin: 0px;
  padding: 0px;
  border: 1px solid white;
  background-color: white;
}
#inhalt
{
  max-width: 900px;
  margin: 0px auto 0px auto;
  padding: 0px 30px 10px 30px;
  position: relative;            
}

footer
{
  margin: 0px;
  padding: 50px 50px 0px 50px;
  height: 30px; 
  background: url(../images/footer.jpg);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: center top;
  text-align: center;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;        
}
footer div
{
  margin: 0px;
  padding: 0px;
  vertical-align: middle;
  font-size: 14px;
}

footer .footerfloat
{
  display: inline-block;
  margin: 0px 10px 10px 10px;
  padding: 0px !important;
  height: 25px;
}
footer table
{
  height: 100%;
}
footer table td
{
  vertical-align: middle;
}
footer img
{
  height: 20px;
}


a
{
  text-decoration: none;
  color: black;
}
a.ext
{
  text-decoration: none;
  color: black;
}
a.ext:hover
{
  text-decoration: underline;
  color: #555;
}
a.ext:after
{
  content: " " url(../images/ext.png);
}
a:hover
{
  text-decoration: underline;
  color: black;
}
a.tarn:hover
{
  text-decoration: none;
}

p
{
  margin: 0px 0px 10px 0px;
  text-align: justify;
  line-height: 22px;
  font-family: 'Lato', sans-serif, arial;
  text-transform: none;
  color: black;
  font-weight: normal;
  font-size: 16px;
}

h1
{
  margin: 20px 0px 14px 0px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif, arial;
  font-size: 18px;  
  /*font-family: 'Indie Flower', cursive, arial;
  font-size: 22px;*/
  font-weight: bold;
  color: #e06b4b;
  border-bottom: 1px solid #e06b4b;  
}

h2
{
  margin: 14px 0px 6px 0px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: #e06b4b;  
}

h3
{
  margin: 14px 0px 6px 0px;
  font-size: 16px;
  font-weight: bold;  
  color: #e06b4b;
}

table
{
  width: 100%;
}
table th, table td
{
  text-align: left;
  font-size: 16px;
  font-family: 'Lato', sans-serif, arial;
}

INPUT[type=text], INPUT[type=password], SELECT, TEXTAREA
{  
  padding: 3px;
  font-family: 'Lato', sans-serif, arial;
  font-size: 14px;
  color: #333;  
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 3px;  
	-webkit-transition: background-color 0.2s, border-color 0.3s, box-shadow 0.3s;
	-moz-transition: background-color 0.2s, border-color 0.3s, box-shadow 0.3s;
	transition: background-color 0.2s, border-color 0.3s, box-shadow 0.3s;  
}
INPUT[type=text]:hover, INPUT[type=password]:hover, SELECT:hover, TEXTAREA:hover
{
  color: #000;
  background-color: #f7dad2;
  border-color: #eeb5a5;
}
INPUT[type=text]:focus, INPUT[type=password]:focus, SELECT:focus, TEXTAREA:focus
{
  color: #000;
  background-color: #f7dad2;
  border-color: #e79178;
  box-shadow: 0 0 2px #aaa;
}
button, input[type=button], input[type=submit]
{
  padding: 2px 5px;
}

.hidden
{
  display: none;
}
.autosize
{
	-webkit-transition: height 0.2s;
	-moz-transition: height 0.2s;
	transition: height 0.2s;
}

/* SPEZIELL */
form[name=Kontaktformular] input[type=text], form[name=Kontaktformular] textarea
{
  width: 490px;
}

#ueberschrift_ueberuns
{
  position: relative;
}
#ueberschrift_ueberuns .border
{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 76%;
  border-bottom: 1px solid black;
  z-index: 1;
}
#ueberschrift_ueberuns .bilder
{
  position: relative;
  z-index: 2;
}
#ueberschrift_ueberuns img
{
  width: 33%;
  display: inline-block;
}

#gruppenbild
{
  text-align: center;
  line-height: 10px;
}
#gruppenbild img
{
  max-width: 500px;
  width: 100%;
}
#gruppenbild span
{
  font-size: 10px;
}

#dassindwir
{
  margin: 35px 0px 0px 0px;
}
#dassindwir img
{
  width: 50%;
}

div.ueberunscontainer
{
  display: table;
  width: 100%;
  border-spacing: 10px;
}
div.ueberuns
{
  display: table-cell;
  width: 30%;
  padding: 10px;
  text-align: center;  
}
div.ueberuns img
{
  width: 100%;
}
div.ueberuns h2
{
  margin: 6px 0px 6px 0px;
}


/*
FARBEN:
100% Safran: #cf9118
75 % Safran: #dbad52
50 % Safran: #e7c88b
25 % Safran: #f3e3c5

100% Herbst: #ef7a59  #e06b4b
75 % Herbst: #f39b83  #e79178
50 % Herbst: #f7bcac  #eeb5a5
25 % Herbst: #fbded5  #f7dad2
*/

