/* Stylesheet für PB Vikings Webseite */

/* default settings für ganze Seite */
html {
	margin: 0px;
	padding: 0px;
}

body {
	font-family: arial, helvetica, sans-serif;
	font-size: 11px;
	background-color: white;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
}

a {
	text-decoration: underline;
	color: black;
}

a:hover {
	color: red;
}

/* ID für Headerbereich */
#header {
	width: 100%;
	height: 135px;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: white;
	z-index: 99;
}

/* ID für Bild im Header links */
#header_bild_links {
	width: 288px;
	height: 150px;
	top: 0px;
	left: 0px;
	position: absolute;
}

/* ID für Bild im Header rechts */
#header_bild_rechts {
	width: 357px;
	height: 100px;
	position: absolute;
	top: 15px;
	right: 0px;
}

/* ID für Balken unter Primärnavigation */
#header_balken {
	width: 100%;
	height: 5px;
	background-color: #990000;
	bottom: 0px;
	left: 0px;
	position: absolute;
}

/* ID für Primärnavigation */
#header_primnav {
	position: absolute;
	bottom: 5px;
	height: 20px;
	width: 500px;
	left: 230px;
	
}

/* Primärnavigation */
/* Kontainer für einzelnen Priärnavigationslink */
td.navbox {
	width: 80px;
	height: 20px;
	background-color: #DCDCDC;
	text-align: center;
}

/* Kontainer für einzelnen Priärnavigationslink bei aktivierter Maus */
td.navbox:hover {
	background-color: #990000;
	color: white;
}

/* Kontainer für einzelnen Priärnavigationslink aktive Seite */
td.navbox_aktiv {
	width: 80px;
	height: 20px;
	background-color: #990000;
	text-align: center;
	color: white;
	text-decoration: none;
}

/* Linkdefinition für Primärnavigation */
a.nav {
	display: block;
	color: black;
	text-decoration: none;
}

/*Linkdefinition für Primärnavigation bei aktivierter Maus */
a.nav:hover {
	color: white;
}

/* ID für Inhalt der Seite */
#inhalt {
	top: 135px;
	left: 0px;
	padding-bottom: 30px;
	position: absolute;
	width: 100%;
	background-position: 0px 0px;
	background-repeat: no-repeat;
	height: 100%;
	z-index: 1;
}

/* Klasse für Titelleiste eines Elements */
.titel {
	display: block;
	width: 100%;
	background-color: #990000;
	color: white;
	font-size: 12px;
	font-variant: small-caps;
	text-align: center;
	margin-bottom: 10px;
	padding-top: 2px;
	padding-bottom: 2px;
}
	
/* Klasse zum zentrieren */
.center {
	align: center;
}



/* Klasse zum zentrieren von Bildern */
.bild_center {
	position: relativ;
	margin-left: 25%;
	margin-right: 25%;
	width: 50%;
	align: center;
}

/* Klasse für Link zurück */
.back_link {
	position: absolute;
	right: 20px;
	text-align: right;
}

/* ID für Impressum/Anfahrt */
#impressum {
	position: absolute;
	left: 60px;
	top: 250px;
	width: 100px;
	height: 50px;
	font-variant: small-caps;
	font-size: 12px;
	text-align: center;
}

