@charset "utf-8";
/* CSS Document */

@charset "utf-8";


/* =============================================================================
   HTML5-Anzeigedefinitionen
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
[hidden] { display: none; }

/* =============================================================================
   Basis
   ========================================================================== */

/*
  * 1. Die Anpassung der Textgröße führt in IE6/7 zu merkwürdigen Resultaten, wenn die Schriftgröße des Bodytexts in em-Einheiten angegeben ist
 * 2. Erzwingen einer vertikalen Bildlaufleiste in Nicht-IE-Browsern
 * 3. Verhindern der iOS-Textgrößenanpassung beim Ändern der Geräteausrichtung ohne den Benutzerzoom zu deaktivieren: h5bp.com/g
 */

html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }

body {
	font-size: 1em;
	line-height: 1.7;
	margin: 0;
	padding: 0px;
}

body, button, input, select, textarea {
	font-family: Arial, Helvetica, sans-serif;
	color: #666;
}

p, h1, h2, h3, h4, hr {
	orphans: 3;
	widows: 3;
	margin-right: 15px;
	margin-left: 15px;
}


h1, h2, h3, h4 {
	color: rgba(0,0,153,1);
	font-weight: normal;
	margin-top: 0px;
	line-height: 1.3em;
	font-family: 'gillsans';
	
}


h1 {
	font-size: 195%;
	margin-bottom: 10px;
	font-weight: normal;
	text-transform: uppercase;
	/* [disabled]letter-spacing: 1px; */
	/* [disabled]word-spacing: 1px; */
	
}
h2 {
	font-size: 150%;
	margin-bottom: 8px;
}

h3 {
	font-size: 120%;
	margin-bottom: 4px;
}

p {
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 10px;
}
.text-klein {
	font-size: 85%;
	line-height: 1.8em;
}

.clearfloat { /* Diese Klasse kann einem <br />-Tag oder einem leeren Blockelement als abschließendes Element nach dem letzten schwebenden Block (innerhalb von .container) zugewiesen werden, wenn die Fußzeile entfernt oder aus .container verschoben wird. */
	clear: both;
	height: 0;
	font-size: 0px;
	line-height: 0px;
}


/* =============================================================================
   Hyperlinks
   ========================================================================== */

a {
	color: rgb(255,153,0);
	text-decoration: none;
}
a:visited {
	color: rgb(255,153,0);
	outline: none;
}
a:hover {
	color: rgb(0,0,153);
	text-decoration: underline;
}
a:focus {
	outline: none;
}
/* Verbessert in allen Browsern die Lesbarkeit von Hyperlinks, die über die Tabulatortaste fokussiert werden (focus) und von Hyperlinks, auf die der Mauszeiger gerichtet ist (hover): h5bp.com/h */
a, a:link, a:hover, a:active, a:visited { 
	outline: 0;
	outline:none;
}

a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	outline:none;
}

.Info-box a {
	margin-right: 15px;
	margin-left: 15px;
	padding-top: 12px;
	padding-right: 5px;
	padding-bottom: 12px;
	padding-left: 5px;
	display: block;
	color: rgba(255,255,255,1);
	text-decoration: none;
	background-color: rgba(255,153,0,1);
	text-align: center;
	text-transform: uppercase;
	-webkit-transition: all 0.300s;
	-moz-transition: all 0.300s;
	-ms-transition: all 0.300s;
	-o-transition: all 0.300s;
	transition: all 300ms;
	font-weight: bold;
	line-height: 100%;
	cursor: pointer;
}

.Info-box a:hover {
	text-decoration: none;
	background-color: rgba(255,153,0,0.6);
}

.link-mehr {
	background-image: url(../layout/link-pfeil.png);
	background-position: right center;
	color: rgba(255,153,0,1);
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	height: 17px;
	display: inline-block;
	padding-right: 22px;
	text-decoration: none;
	background-repeat: no-repeat;
	margin: 0px;
	line-height: normal;
}

.link-mehr:hover {
	color: rgba(35,49,162,1);
	background-image: url(../layout/link-pfeil-2.png);
	text-decoration: none;
}

audio:not([controls]) { display: none; }


.Liste {
	margin-left: 0px;
	line-height: 1.4em;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	margin-top: 5px;
	margin-bottom: 12px;
	list-style-type: none;
	padding-left: 40px;
	margin-right: 20px;
}

.Liste ul {
	margin: 0px;
}

.Liste li {
	padding-top: 5px;
	padding-bottom: 6px;
	padding-left: 0px;
	font-size: 100%;
	font-weight: bold;
	list-style-image: url(../layout/li-punkt.png);
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 4px;
	margin-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(255,153,0,1);
}

.Liste li:first-child {
}





/* =============================================================================
   Typografie
   ========================================================================== */

abbr[title] { border-bottom: 1px dotted; }

b, strong { font-weight: bold; }

blockquote { margin: 1em 40px; }

dfn { font-style: italic; }

hr {
	display: block;
	height: 1px;
	margin-top: 0.7em;
	margin-bottom: 0.7em;
	padding-top: 0;
	padding-bottom: 0px;
	border-top-width: 1px;
	border-right-width: 0;
	border-bottom-width: 0;
	border-left-width: 0;
	border-top-style: solid;
	border-top-color: #999;
}

ins { background: #ff9; color: #000; text-decoration: none; }

mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }

/* Nichtproportionale Schriftfamilie neu deklarieren: h5bp.com/j */
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }

/* In allen Browsern die Lesbarkeit von vorformatiertem Text verbessern */
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }

q { quotes: none; }
q:before, q:after { content: ""; content: none; }

small { font-size: 85%; }

/* Text höher oder tiefer stellen ohne die Zeilenhöhe zu beeinflussen: h5bp.com/k */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
dd { margin: 0 0 0 40px; }
