/**************************************************
 * ---------------- CSS - Elemente ----------------
 **************************************************/

* {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  padding-bottom: 1em;
  color: #202020;
  background-color: white;
  font-family: Arial, Helvetica, "Times New Roman", sans-serif;
  font-size: 12px;
}

h1 {
  margin-bottom: 0.5em;
	font-weight: bold;
}

h2 {
  margin-bottom: 0.5em;
	font-weight: bold;
}

a, a:link, a:active, a:visited {
  background-color: inherit;
  color: #009;
	text-decoration: none; 
	border-left: medium none;
}

a:hover, a:focus {
  background-color: inherit;
  color: #c00;
	text-decoration: none 
}

img {
  border: none;
}

/**************************************************
 * --------------------- ID's ---------------------
 **************************************************/ 
 
#header {
  height: 100px;
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  border-bottom: 1px solid #000000;
}

#navigation {  
  width: 130px;
  height: inherit;
  padding: 10px;
  background-color: #FFFFFF;
  color: #000000;
  position: fixed;
  top: 101px;
  left: 0px;
  right: 0px;
  bottom: 101px;
}

#navigation a, #navigation a:link, #navigation a:active, #navigation a:visited {
  display: block;
  width: 130px;
  margin-bottom: 5px;
  padding: 5px 0;
  background-image: url(img/button.jpg);
  font-size: 12px;
  text-align: center;
}

#subnavigation  {
  margin-bottom: 15px;
}

#content {
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: 100% 87%;
  background-attachment: fixed;
  color: #000000;
  position: fixed;
  top: 101px;
  left: 150px;
  right: 0px;
  bottom: 101px;
  padding: 10px 10px 30px 20px;
  overflow: auto;
  float: right;
}

#footer {
  height: 100px;
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-top: 1px solid #000000;
}


#redirect {
  height: inherit;
  width: 750px;
  background-color: #CCCCCC;
  color: #000000;
  padding: 5px 10px 10px 10px;
  margin: auto;
  margin-top: 20%;
  border: 1px solid #000000;
}

/**************************************************
 * ------------------- Klassen -------------------
 **************************************************/ 

.blocktext  { 
  background-color: inherit;
	color: #666; 
  text-align: justify;
  font-size: 12px;
}

.success {
  width: 90%;
  margin: 0 auto 10px auto;
  padding: 2px 5px;
  color: inherit;
  background-color: #eeffee;
  border: 1px solid #55cc55;
}

.error {
  width: 90%;
  margin: 0 auto 10px auto;
  padding: 2px 5px;
  color: inherit;
  background-color: #ffeeee;
  border: 1px solid #cc5555;
}

.info {
  width: 90%;
  margin: 0 auto 10px auto;
  padding: 2px 5px;
  color: inherit;
  background-color: #eeeeff;
  border: 1px solid #5555cc;
}