/*** Schriftarten ******************************/
@font-face{
	font-family: 'bahnschrift';
	src: url('bahnschrift.eot');
	font-weight: normal;
	font-style: normal;
}

@font-face{
	font-family: 'bahnschrift';
	src: url('bahnschrift.ttf');
	font-weight: normal;
	font-style: normal;
}


/*** Allgemeine Definitionen *******************/
:root{
	--seitenbreite: 800px;
	--margin: 10px;
	--inhaltbreite: 780px;  /* seitenbreite - 2 * margin */
	--rahmenbreite: 20px;

	--headerhoehe: 60px;
	--contenttop: 80px;  /* headerhoehe + 2 * margin */
}

*{
	margin: 0;
	padding: 0;

	font-family: 'bahnschrift';
	letter-spacing: 0.02em;
	line-height: 1.2em;
	color: #333333;
}

html, body{
	width: 100%;
	height: 100%;

	background: url('background.jpg') center center no-repeat;
	background-size: cover;
}

a{
	text-decoration: none;
	color: #555555;
}

a:hover{
	text-decoration: underline;
}

img{
	border: 1px solid #333333;
}

#distance{
	width: 1px;
	height: 50%;
	margin-bottom: -50%;
	float: left;
}

#container{
	margin: 0 auto;
	position: relative;
	height: 100%;
	width: var(--seitenbreite);
	clear: left;
}

div.global{
	position: absolute;
	width: 100%;
	top: var(--rahmenbreite);
	bottom: var(--rahmenbreite);
	background: url('transparent.png');
	border: 1px solid #707070;
}

#header{
	position: relative;
	top: var(--margin);
	height: var(--headerhoehe);
	left: var(--margin);
	width: var(--inhaltbreite);

	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-size: 30px;
}

#content{
	position: absolute;
	top: var(--contenttop);
	bottom: var(--margin);
	left: 0px;
	width: var(--inhaltbreite);
	padding-left: var(--margin);
	padding-right: var(--margin);
	overflow: auto;

	text-align: center;
	font-size: 15px;
}

#content_note{
	font-size: 10px;
	color: #777777;
	padding-bottom: 10px;
}

* html #ail{
	background: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/pix/transparent.png', sizingMethod='scale');
	height: 1%;
}
