/**********************************************/
/*VOX Humana  Nett-Works Februar 2017         */
/**********************************************/

/*************************************************************************/
/*Grundformatierung (wird durch spezielle Formatierungen ueberschrieben) */
/*************************************************************************/
* {
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

html, body {
	height: 100%;
	color: #352d15;
	background-color:#ece7e4;
}
/*Standardverlinkung*/
a, a:link, a:visited {
  text-decoration:none;
	font-size : 11px;
	color : #fcfcf4;
}
a:hover, a:active {
  text-decoration:none;
	font-size : 11px;
	color : #424040;
}
a:active {
	text-decoration: underline;
}
/*Schrift gergroessern fuer Menue-Navigation*/
@media (max-width: 680px)
{
  a, a:link, a:visited, a:link, a:visited{
  	font-size : 1.1em;
  }
}

/*Ueberschrift fuer headline(Ueberschrift_braun)*/
h1 {
	font-weight : normal;
	font-size : 22px;
	color : #352d15;
	text-align : left;
	margin:0;
	padding:0;
}
@media (max-width: 580px)
{
  h1{
  	font-size : 19px;
  }
}
/*Ueberschrift in Textbox (Ueberschrift_gruen_klein)*/
h2 {
	font-weight : bold;
	font-size : 16px;
	color : #a4c300;
	text-align : left;
	vertical-align: middle;
	padding:26px 15px 20px 20px;
}
/*geringerer Abstand nach oben, da Bildleiste oben*/
@media (max-width: 499px)
{
  h2{
  	font-size : 1.1em;
		padding-top:0px;
		padding-bottom:15px;
  }
}
/*Ueberschrift in Textbox mit kleinerem Abstand (Ueberschrift_gruen_klein)*/
h3 {
	font-weight : bold;
	font-size : 16px;
	color : #a4c300;
	text-align : left;
	vertical-align: middle;
	padding:20px 15px 5px 20px;
}
h4 {
	font-weight : bold;
	font-size : 12px;
	color : #a4c300;
	text-align : left;
	vertical-align: middle;
	padding: 20px 15px 0px 20px;
}

/*allgemeine Textformatierung (text)*/
p {
	font-size : 12px;
	color : #352d15;
	text-align : left;
	margin-right:15px;
	margin-left:20px;
}

/**********/
/*Layout  */
/**********/

/*Hauptumrandung zur Positionierung der inneren Elemente*/
#main {
	position: relative;
	width:100%;
}
/*festglegte Breite mittig positionieren, position absolute orientiert sich an relative*/
#zentriert {
	position: absolute;
	top: 0px;
	left: 0;
	bottom: 0px;
	right: 0;
	width:670px;
	max-width:670px;
	margin: auto;
}
/*festgelegte Breite entfernen*/
@media (max-width: 680px)
{
  #zentriert {
  width: 100%;
	max-width:100%;
	margin:0;
  }
}
/*nach der Zentrierung wird  Abstand oben festgelegt*/
#content {
	margin-top:30px;
}
/*Abstand oben entfernen*/
@media (max-width: 680px)
{
  #content {
  	margin-top:0px;
  }
}

/* Balken oben und unten, mit float auf die rechte Seite geschoben*/
.gruen {
	float:right;
	width:570px;
	height:3px;
	background-color: #a4c300;
	margin:0;
	padding:0;
}
/*div container fuer den Balken*/
.teiler {
	width:670px;
	height:3px;
}
/* Balken oben und unten volle Breite*/
@media (max-width: 680px)
{
  .gruen, .teiler {
  	width:100%;
  }
}

/*Kopfzeile*/
.bonsai {
	float:left;
	background-color: #fcfcf4;
	height:89px;
	min-height:89px;
}
.headline {
	width: 670px;
	height:89px;
	min-height:89px;
	vertical-align: middle;
	background-color: #ffffff;
}
/*Bonsai nach oben, feste Breite aufheben, Höhe anpassen an Schriftgroesse und Zeilenumbruch*/
@media (max-width: 680px) and (min-width: 500px)
{
  .headline {
  	width:100%;
		height:120px;
		min-height:120px;
  }
}
@media (max-width: 499px)
{
  .headline {
  	width:100%;
		height:178px;
		min-height:178px;
  }
}
@media (max-width: 680px)
{
  .bonsai {
  	float:none;
		width:100%;
  }
}
@media (max-width: 680px)
{
  img.bonsai {
  	float:left;
  }
}
/*padding=innenabstand, top right bottom left*/
img.voxhumana {
	padding: 19px 0 0px 20px;
}
/*Schriftzug nach oben*/
@media (max-width: 680px) and (min-width: 500px)
{
  img.voxhumana {
  	position: absolute;
		top:23px;
		left:109px;
  }
}
/*Schriftzug nach oben ... und wieder nach unten*/
@media (max-width: 499px)
{
  img.voxhumana {
		padding: 5px 0 0px 20px;
  }
}
/*margin=aussenabstand, top right bottom left*/
.praxis {
	float:left;
	margin:0px 20px 0px 20px;
}
/*Praxis und Name untereinander schieben*/
@media (max-width: 499px)
{
  .praxis {
		margin-top:0px;
		left:20px;
  }
}
@media (max-width: 499px)
{
   .name {
		padding-top: 26px;
		padding-left:20px;
  }
}

/*Impressum mit abstand nach unten*/
.impressum {
	float:both;
	clear:both;
  height: 14px;
	text-align:right;
	margin-bottom:36px;
}
/*Verlinkung Impressum, display:block = ganze Zeile*/
.impressum a, .impressum a:hover, .impressum a:visited {
	display:block;
	text-decoration:none;
	font-weight : bold;
  color: #a4c300;
  font-size : 10px;
	padding-right: 15px;
}
.impressum a:active {
	text-decoration:underline;
}
/*Hintergrundfarbe bei hover fuer Impressum nur fuer kleine Anzeige*/
@media (max-width: 680px)
{
	.impressum a:hover {
		background-color:#dae094;
	}
}
/*************************/
/*Menu-Button            */
/*************************/
/*Navicon und Platzhalter fuer gruene Leiste ohne Navigation*/
 #oben_mobil, #nav_leer {
	display:none;
}

@media (max-width: 680px)
{
	#oben_mobil {
		display:block;
	  position: absolute;
		font-weight: bold;
		font-size: 1em;
	  float: right;
	  right: 15px;
	  top: 22px;
	  width: 74px;
	  padding: 0;
	  z-index: 20;
	}
}
@media (max-width: 680px)
{
	button.menu-toggle{
	  display: block;
	  padding:2px 6px 6px 6px;
	  float: right;
	  background: #ffffff;
		color: #a4c300;
	  border: 3px solid #dae094;
	  border-right-color:#424040;
	  border-bottom-color:#424040;
	}
}
	/* Hier werden die horizontalen Balken des Öffnen-Buttons definiert. Die einzelnen CSS Einträge sind bereits erklärt */
@media (max-width: 680px)
{
	.menu-toggle .icon-bar {
	  display: block;
	  width: 30px;
	  height: 5px;
	  min-height:5px;
	  max-height:5px;
	  background-color: #a4c300;
	  margin-top: 5px;
	}
}

/*grune Leiste anzeigen*/
@media (max-width: 680px)
{
  #nav_leer {
    display: block;
  	width:100%;
		background-color: #a4c300;
		height:15px;
		min-height:15px;
		max-height:15px;
		border:none;
    text-decoration: none;
		font-size:11px;
		color:#fff;
		padding:0 0 0 15px;
		margin:0;
		text-align:left;
		z-index:6;
  }
}

/**************/
/*Navigation  */
/**************/
/*Navigation als Liste, nebeneinander durch float*/
nav {
	background-color: #a4c300;
	width:670px;
	height:15px;
	z-index:5;
}
nav ul {
	margin-left:105px;
	list-style:none;
}
nav ul li {
	float:left;
	padding-left:10px;
	padding-right:5px;
	height:15px;
	list-style:none;
}
nav ul li a {
	display:block;
}
/*Schriftfarbe fuer aktuelle Seite*/
nav ul li.on a{
	color : #424040;
}

@media (max-width: 680px)
{
  nav {
  	display:none;
		width:100%;
		height:auto;
  }
}
/*Navigation fuer Menu*/
@media (max-width: 680px)
{
  nav ul {
  	position:absolute;
		top: 15px;
		right:80px;
		margin:0;
  }
}
@media (max-width: 680px)
{
  nav ul li {
  	float:none;
		padding-top: 4px;
		padding-bottom:4px;
		padding-right:15px;
		margin:0;
		height:auto;
		border: 1px solid #352d15;
		background-color: #a4c300;
		opacity: 0.9;
  }
}

/***********************/
/*Layout Inhalt        */
/***********************/
/*Inhaltsbox, z-index legt fest, was sich im Vordergrund befindet*/
#inhalt {
	background-color: #fcfcf4;
  margin-bottom:0px;
	min-height:420px;
	z-index: 4;
}
/*Textbox mit weißem Hintergrund*/
.textbox {
	margin-left:100px;
  width:570px;
	background-color:#ffffff;
	z-index:6;
}
/*Textbox ganze Breite*/
@media (max-width: 680px)
{
  .textbox {
  	width:100%;
		margin-left:0;
  }
}
/*bildleiste rechts positionieren mit Abstand*/
.bildleiste {
	float:right;
	margin: 15px 15px 15px 15px;
}
/*Bildleiste (alle Bilder) nach oben*/
@media (max-width: 500px)
{
  .bildleiste {
  	float:none;
		margin-left:20px;
  }
}

/*Inhalt in der linken Spalte*/
.links_box {
	float:left;
	width:100px;
	margin-top:15px;
}
@media (max-width: 680px)
{
  .links_box {
  	float:right;
  	margin:15px;
  }
}

/***********************/
/*Formatierung Inhalt  */
/***********************/

/*Listenformatierung mit Mund (als Hintergrundbild eingebunden und ueber textident erste Zeile eingerueckt*/
#inhalt div.mund {
  background-image: url(bilder/mund.gif);
	background-position: top left;
	background-repeat:no-repeat;
	padding-top:2px;
	padding-bottom:2px;
	margin:0 15px 0 20px;
	text-indent: 28px;
	font-size : 12px;
}
/*Links innerhalb der Listen*/
div.mund a, div.mund a:visited, div.mund a:active{
	font-weight : bold;
	font-size : 11px;
	color : #a4c300;
}
div.mund a:hover {
	color : #424040;
}

/*bold im Text (<b>)*/
.text_bold {
	font-weight : bold;
}

/*Impressum*/
.text_bold_green {
	font-weight : bold;
	font-size : 11px;
	color : #a4c300;
}
.text_klein {
	font-weight : normal;
	font-size : 10px;
	color : #352d15;
	text-align : left;
}

/*Linkliste Kontakt*/
a.link_linkliste, a.link_linkliste:visited, a.link_linkliste:active {
	text-decoration:none;
	font-size : 11px;
	font-weight : bold;
	color : #a4c300;
}
a.link_linkliste:hover {
	color : #424040;
}

/*feste Schrift unten
.unten {font-family : Verdana, Arial, Helvetica, sans-serif;
		font-weight : bold;
		font-size : 18px;
		color : #EFECEA;
		text-align : center;
		vertical-align: middle;
				}

.text_weiss {font-family : Verdana, Arial, Helvetica, sans-serif;
		font-weight : normal;
		font-size : 12px;
		color : #ffffff;
		text-align : left;
		text-align: justify;
				}

.text_bold_black {font-family : Verdana, Arial, Helvetica, sans-serif;
		font-weight : bold;
		font-size : 11px;
		color : #352d15;
		text-align : left;
				}

.ueberschrift_gruen {font-family : Verdana, Arial, Helvetica, sans-serif;
		font-weight : normal;
		font-size : 22px;
		color : #a4c300;
		text-align : right;
		vertical-align: middle;
				}
*/
/*Layer Unternavi
.unternavi {
	position: absolute;
	left: 170px;
	background-color: #F9F9F7;
	background-color: transparent;
	width:550px;
	z-index:2;
}
*/
/*Layer Titel Zentrum...
.zentrum {
	position: absolute;
	left: 5px;
	background-color: #F9F9F7;
	background-color: transparent;
	width:200px;
	z-index:3;
}
*/
/*ohne Abstand
.ohneabstand {
	position: absolute;
	top: 0px;
	left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	height:400;
}
*/
