﻿/* hak.css */
@charset "UTF-8";
body { background-color:#DCDDFC; margin:0; padding:0; }
* { font-family:sans-serif; color:#000000; }
a:link { color:#004080; text-decoration:underline; }
a:visited { color:#004080; text-decoration:underline; }
a:active { color:#004080; text-decoration:none; }
a:focus { color:#004080; text-decoration:none; }
a:hover { color:#004080; text-decoration:none; }

#FixedBottomLine { 	
	position:absolute; 
	bottom:0px;
	left:0px;
	font-size:75%; 
	text-align:center;
	background-color:#DCDDFC;
	color:black;
	width:100%;
}
html>body #FixedBottomLine {  /* nur fuer moderne Browser! */
	position:fixed;
} 

#NavLeiste {
	position:absolute;
	top:0px;
	left:0px;
	margin:0;
	padding:0.5em;
	width:100%;
	text-align:center;
	background-color:black;
	color:gray;
	font-weight:bold;
}
html>body #NavLeiste {  /* nur fuer moderne Browser! */
    position: fixed;
  }
#NavLeiste a {
	color:gray;
	font-weight:bold;
	text-decoration:none;
}
#NavLeiste a:active, #NavLeiste a:focus, #NavLeiste a:hover {
    color:lightgray;
	text-decoration:underline;
}
#NavLeiste div {
     clear:both;
  }

#Inhalt {
	margin-top:3.5em;
	margin-left:1em;
}
