﻿/* Basics */

h2 {
	margin: 36px 0 15px;
	font-size: 14px;
	border-bottom: 1px solid #439620;
}

h3 {
	margin: 24px 0 4px;
	font-size: 12px;
	font-weight: normal;
	font-style: italic;
	letter-spacing: 1px;
	border-bottom: 1px solid #439620;
}

/*hervorgehobener Text nach Hauptüberschrift (die Frage) */

h1 + em {
	margin: 10px 0 20px 0;
	display: block;
}


/* Tabelle mit Außenabstand oben/unten und links/rechts*/

table {
	font: normal 12px Arial, Helvetica, 'Liberation Sans', FreeSans, sans-serif;
	margin: 15px 20px;
	border-collapse: collapse;
}

/*Bilder mit Bildunterschrift (<div class="image">...) */

.image {
	margin: 15px auto 15px auto;
	padding: 10px;
	border: 1px solid #aaa;
	
}

/*Bildunterschrift
Abstand oben 10, links/rechts und unten 0
Zeilenhöhe 10px*/

.image p {
	margin: 15px 0 0;
	font-size: 10px;
	line-height: 10px;
}


/* Headercontainer wird benötigt, um die volle Breite schwarz zu füllen*/
/* feste Position am oberen Rand, feste Höhe, 100% Breite*/
/* dunkelgrau und leicht durchsichtig (mehrere Befehle für diverse Browser)*/

#headercontainer {
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0px;
	height: 60px;
	width: 100%;
	background-color: #111;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
	filter: alpha(opacity=95);
	opacity: .95;

}

/* Content (container to set width to 760px) */

#container {
	margin: 0 auto;
	padding: 10px;
	width: 740px;
	min-height: 400px;
	border-left: 1px solid #aaa;
	border-right: 1px solid #aaa;
	background-color: #fff;
	background-image: url(help/english/images/logo100x100.png);
	background-repeat: no-repeat;
	background-position: 20px 70px;
	-moz-box-shadow: 0px 0px 5px 5px #ddd;
	-webkit-box-shadow: 0px 0px 5px 5px #ddd;
	box-shadow: 0px 0px 5px 5px #ddd;
}

#content {
	margin: 117px 70px 40px;
}



/* Footer */

#footer {
	margin: -40px 0 0 0;
	padding: 10px 0 0 0;
	height: 30px;
	width: 100%;
	font-size: 10px;
	color: #fff;
	text-align: center;
	background-color: #111;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
	filter: alpha(opacity=95);
	opacity: .95;
}




