@CHARSET "UTF-8";

/*	====================================================================================================
		Doku + Snippets
	---------------------------------------------------------------------------------------------------- */

/*	==================================================
		Farben
	-------------------------------------------------- */
/*
blau		#007d43		Kategorietitel
dunkelgrün	#82d773		Hervorhebung in Tabelle
hellgrün	#ffd400		Hervorhebung in Tabelle
dunkelgrau	#666		Fliesstext
mittelgrau	#ddd		Tabellen-Überschriften
hellgrau1	#eee		Formular
hellgrau2	#eee		Tabellenzellen
*/

/*	==================================================
		Link Pseudoklassen
	-------------------------------------------------- */
/*
:link = für Verweise zu noch nicht besuchten Seiten
:visited = für Verweise zu bereits besuchten Seiten
:focus = für Elemente, die den Fokus erhalten, z.B. durch "Durchsteppen" mit der Tabulator-Taste (CSS 2.0)
:hover = für Elemente, während der Anwender mit der Maus darüber fährt (CSS 2.0)
:active = für gerade angeklickte Elemente
*/





/*	====================================================================================================
		Allgemein
	---------------------------------------------------------------------------------------------------- */

/*	==================================================
		Struktur Seitenaufbau
	-------------------------------------------------- */
.environmentHeader {
	color: black;
	font-size: 1em;
	font-weight: bolder;
	background: yellow;
	padding: 5px;
}

.trenner_hor {
	height: 10px;
}

#identifikationsbereich {}

#orientierungsbereich {
	/* margin-bottom: 10px; */
}

#content {}

#naviMain {
	padding-top: 10px;
	height: 35px;
}

#breadcrumb {
	clear: both;
	padding: 5px 0px 5px 0px;
	border-top: 1px dotted #9a9a9a;
	border-bottom: 1px solid #9a9a9a;
}

#naviSub {}

#fussleiste {
	border-top: 1px solid black;
	height: 20px;
	padding-top: 5px;
}



/*	==================================================
		Struktur Navi
	-------------------------------------------------- */
#naviMain ul, #fussleiste ul {
	padding: 0px;
	margin: 0px;
	clear: both;
}

#naviMain ul li, #fussleiste ul li {
	float: left;
	padding-right: 10px;
	margin: 0px;
	list-style: none;
}

#naviSub ul {
	margin-left: 0px;
	list-style: none;
}

#naviSub ul li {
	margin-left: 10px;
}



/*	==================================================
		Typographie
	-------------------------------------------------- */
body {
	/* global + Fliesstext */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #666;
	font-size: 1.0em;
	line-height: 1.16em;
	font-weight: normal;
	text-decoration: none;
}

h1 {
	/* Kategorietitel */
	color: #007d43;
}

h2 {
	/* Ueberschrift */
	color: #007d43;
}

h3 {
	/* Unter-Ueberschrift */
	color: #000;
}

h4 {
	/* Zwischen-Ueberschrift */
	color: #000;
}

div.kontakt-impressum > p {
	font-size: 1.5em;
	line-height: 1.5em;
	margin-bottom: 1.5em;
}



/*	====================================================================================================
		Buttons
	---------------------------------------------------------------------------------------------------- */
.btn-success {
	background-color: #007d43;
}

.btn-success:disabled {
	background-color: #007d43;
}





/*	====================================================================================================
		Links
	---------------------------------------------------------------------------------------------------- */

/*	==================================================
		Links allgemein
	-------------------------------------------------- */
a {
	/* Gleiche Einstellungen wie: global + Fliesstext */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #666;
	font-size: 1.0em;
	line-height: 1.16em;
	font-weight: normal;
	text-decoration: none;
}

a:link {
}

a:visited {
}

a:focus {
}

a:hover {
	text-decoration: underline;   /* nicht im Styleguide */
}

a:active {
}



/*	==================================================
		Links NaviMain
	-------------------------------------------------- */
#naviMain a {
	font-size: 1.4em;
	font-weight: bold;
	/* zuvor: kein color attribut angegeben */
	color: #007d43;
}

#naviMain a:hover {
	/* color: #9a9a9a; */
	/* color: #000; */
	/* color: #868d92; */
	color: #449d44;
	text-decoration: none;
}

#naviMain a:focus {
	/* color: #9a9a9a; */
	color: #000;
}

#naviMain ul li.active a {
	/* color: #9a9a9a; */
	color: #000;
}



/*	==================================================
		Links Breadcrump + Fussleiste
	-------------------------------------------------- */
#breadcrumb a, #fussleiste a {
	font-size: 1em;   /* nicht im Styleguide */
	color: #007d43;
}



/*	==================================================
		Links Sonstige
	-------------------------------------------------- */
a.fliesstext {
	font-size: 1em;
	color: black;
}



/*	====================================================================================================
		Formulare

		Keine Vorgaben in Styleguide vorhanden
	---------------------------------------------------------------------------------------------------- */

/*	==================================================
		Fehlermeldungen
	-------------------------------------------------- */
ul.errors {
	color: red;
}





/*	====================================================================================================
		Modul "default"
	---------------------------------------------------------------------------------------------------- */

/*	==================================================
		Kontakt
	-------------------------------------------------- */
#kontakt table {
	border-collapse: collapse;
	border-spacing: 0px;
}

#kontakt table td {
	padding: 0px;
}



/*	==================================================
		FAQ / Hilfe
	-------------------------------------------------- */
.faq_liste dt {
	/* Gleiche Einstellungen wie: Unter-Ueberschrift */
	font-size: 1.26em;
	font-weight: normal;
	line-height: 1.13em;
	color: #000;
}

.faq_liste dd {
	margin-bottom: 1.13em;
}





/*	====================================================================================================
		Sonstiges
	---------------------------------------------------------------------------------------------------- */
#gbsLayer {
	z-index: 5000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/black.png);
}

/* IE Dropdownboxen: Rahmen um Dropdown-Arrow entfernen */
select::-ms-expand {
	border:none;
	background: transparent;
}





/*	====================================================================================================
		DEV
	---------------------------------------------------------------------------------------------------- */

/*	==================================================
		Rahmenanzeige
	-------------------------------------------------- */
.box1 {
	border: 1px solid red;
}

.box2 {
	border: 1px solid green;
}

.box3 {
	border: 1px solid blue;
}

.box4 {
	border: 1px dashed blue;
}