@charset "UTF-8";
/* CSS Document */

/* Höhen- und Breitenanpassung zu 100%; Scrollbar ausblenden */
body, html{ width: 100%;
            height: 100%;
            overflow: hidden;}


/* BG-Image auf unterste Ebene anordnen */
#bgImg{
	position: absolute;
	top: 0;
	left: 0;
	border: 0;
	z-index: 1;
	background-image: url(data/bg4.jpg);
}

/* Body-Dummy absolut über BG-Image legen; Scrollbar bei Bedarf einblenden */
#bodyDiv{ position: absolute;
          top: 0;
          left: 0;
          z-index: 2;
          overflow: auto;
          width: 100%;
          height: 100%;
          text-align: center;}

#container
{
	margin: 0 auto;
	width: 100%;height: 100%;
	text-align:left;
}

#header
{
	background:rgba(255, 255, 255, 0.15);
	padding: 20px;
}

#header h1 { 
	margin: 0;
	font-family:Tahoma, Geneva, sans-serif;
	font-color:#FFF;
}

#navigation
{
	float: left;
	width: 100%;
	background: #000;
	box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.4); /* Mozilla Firefox */
	-webkit-box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.4); /* Google Chrome */
}

#navigation ul
{
	margin: 0;
	padding: 20;
}

#navigation ul li
{
	list-style-type: none;
	display: inline;
}

#navigation li a
{
	display: block;
	float: left;
	padding: 5px 10px;
	color: #fff;
	text-decoration: none;
	border-right: 1px solid #fff;
	font-family:Tahoma, Geneva, sans-serif;
}

#navigation li a:hover { background: #990033; }

#content-container
{
	float: left;
	width: 100%;
	background:inherit;
}

#content
{
	clear: left;
	float: left;
	width: 60%;
	padding: 20px;
	margin: 0 0 0 4%;
	display: inline;
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	color:#FFF;
}

#content h2 { margin: 0; }

#aside
{
	float: right;
	width: 26%;
	padding: 20px 0;
	margin: 0 3% 0 0;
	display: inline;
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	color:#FFF;
}

#aside h3 { margin: 0; }

#footer
{
	clear: left;
	background: #000;
	text-align: right;
	padding: 20px;
	height: 1%;
	position:fixed;
	bottom:10px;
	right:0px;
	font-family:Verdana, Geneva, sans-serif;
	font-size:9px;
	color:#FFF;
	box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.4); /* Mozilla Firefox */
	-webkit-box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.4); /* Google Chrome */
}

a:link {
	color: white;
 	text-decoration: underline;
}
a:visited {
 	color: #CCC;
 	text-decoration: none;
}
a:focus {
 	color: white;
 	text-decoration: underline;
}
a:hover {
 	color: #990033;
 	text-decoration: underline;
}
a:active {
 	color: #990033;
 	text-decoration: underline;
}
