﻿@charset "utf-8";
/* CSS Document */

html { height: 101%; }

body { 
/* Gestaltet das HTML-Element mi dem Namen body */
  color: white; /*Schriftfarbe*/
  background-color: white; /*Hintergrundfarbe */
  background-image: url(web_background.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: small;
}

* {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 150%;
}

/* Abstand nach unten */
h2, p, ul, ol {
  margin-bottom: 1em;
}

/* Verschachtelte Listen ohne Abstand */
ul ul { margin-bottom: 0; }

/* Abstand von links */
li { margin-left: 2em; }

#wrapper { 
/*Gestalte das HTMl-Element mi id="wrapper" */
  color: black;
  background-color: white;
  width: 750px;
  margin-top: 20px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
}

#kopfbereich {
  color: black;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 16px;
  padding-left: 0px;
}

#fussbereich {
  color: black;
  /* background-color: #f3c600; /* Gelb-Orange */
  background-image: url(separator_background.jpg); /* kleiner Grauer Balken */
  background-repeat:no-repeat;
  padding-top: 10px; /* unterhalb Rahmenlinie */
  /* border-top: 1px solid #8c8c8c; /* Rahmenlinie oben */
  margin-top: 20px;  /* Aussenabstand oben, oberhalb Linie */
}

#navibereich {
  text-align: left; /*rechtsbündig */
  /* background: #ffe574 url(farbverlauf.jpg) repeat-y top left; */
  padding: 5px 10px 4px 10px;
  border-bottom: 1px solid #8c8c8c; 
  color: #212530;  /* Schriftfarbe */
}

#navibereich li {
  display: inline;   /* li nebeneindander anzeigen */
  list-style-type: none;  /* Aufzühlungszungpunkt */
  margin: 0 ;
}
#navibereich ul {
  margin-bottom:0;
}
#navibereich a {
  color: white;
  background-color: #212530; /* dunkelblau */
  padding: 4px 8px 4px 8px;
  border: 1px solid #8c8c8c;
}
#navibereich a:hover,
#navibereich a:focus {
  background-color: white;
  border-bottom-color: white;
}
#navibereich a:active {
 color:black;
 background-color: white;
}
#navibereich a:hover,
#navibereich a:focus,
#startseite #navi01 a,
#featureseite #navi02 a,
#screenshotseite #navi03 a,
#demoseite #navi04 a,
#orderseite #navi05 a,
#newsseite #navi06 a,
#aboutseite #navi07 a  {
 color: black;
 background-color: white;
 border-bottom-color: white;
}

#textbereich {
 padding-top: 20px;
 padding-right: 10px;
 padding-bottom: 20px;
 padding-left: 18px;
 
 color: #212530;  /* Schriftfarbe */
}

address{
  text-align: center;   /* zentrieren */
  font-size: 80%;       /* etwas kleiner */
  font-style: normal;   /* normale Schrift, nicht kursiv */
  letter-spacing: 2px;  /* Abstand zwischen den Buchstaben */
  line-height:  1.5em;  /* Zeilenabstand */          
}


/* ---- LINKS --- */

a {
 text-decoration: none;
}

a:link, a:visited { 
	color: #000000;
	border-bottom: 1px solid #000000;
}
a:hover, a:focus {
  border-bottom:2px solid #d90000;
}

#textbereich a {
 border-bottom: 1px dotted #cc0000; 
}
#textbereich a:hover,
#textbereich a:focus {
 border-bottom: 1px solid #d90000;
}

