

/* Universal-Selektoren verknüpfen jedes vorhandene Element mit Stylesheetangaben. Beginn mit "*" */

* {
  margin:0;
  padding:0;
  border:none;
}


/* Typ-Selektoren verknüpfen einen Elementtyp, also ein HTML-Tag mit einer Formatierung. Beginn mit "Zeichenfolge {}" Um Formate für HTML-Tags zentral zu deklarieren, brauchst Du als Selektor nur das HTML-Tag ohne spitze Klammern (< >) anzugeben. */


body {
  color: #000;
  background: #696969;
  /*       background: url(images/bg.jpg) repeat;          */
  font-size: 1.0em;
  font-family: Verdana, Arial, sans-serif;
}



p {
  font-size: 0.8em;
  margin: 0 0 10px 0;
}


h1 {
  color: #aaccff;
  font-size: 1.1em;
  font-family: verdana, arial, non-serif;
  font-weight: normal;
  position: absolute; top: 5px; left: 40px;
}


h1 .i3i {
  /* color: #ffffff; */
  font-size: 4.0em;
  font-style: italic;
  font-weight: normal;
  font-family: "Times New Roman", Times, serif;
}


h2 {
  color: #aaccff;
  font-size: 0.8em;
  font-family: verdana, arial, non-serif;
  font-weight: normal;
  position: absolute; top: 75px; left: 123px;
}



h3 {
  color: maroon;
  font-size: 1.2em;
  font-family: verdana, arial, non-serif;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.4em;
  margin: 15px 0 15px 0; 
  padding: 0 0 0 26px;
  border-bottom: 1px solid #999;
  background: url(Images/3square.png) no-repeat;
  background-position: left 4px;
}



h4 {
  color: maroon;
  font-size: 1.1em;
  font-family: verdana, arial, non-serif;
  font-weight: normal;
  padding: 0 0 0 6px;
  margin: 15px 0 10px 0;
  border-left: 4px solid #ccc;
}


h5 {
  color: #aaccff;
  font-size: 0.6em;
  font-family: verdana, arial, non-serif;
  font-weight: normal;
  position: absolute; top: 95px; left: 123px;
}

h6 {
  color: maroon;
  font-size: 0.8em;
  font-family: verdana, arial, non-serif;
  font-weight: normal;
  letter-spacing: 2px;
  line-height: 26px;
  margin: 1px 0 15px 0; 
  padding: 0 0 0 26px;
  border-bottom: 1px solid #999;
  background: url(Images/3square.png) no-repeat;
  background-position: left 4px;
}





/* Klassen sind Selektoren mit beliebigen Namen. Beginn mit "." */


.liste {
  color: #002255;
  font-size: 0.8em;
  font-family: verdana, arial, non-serif;
  font-weight: normal;
  margin: 30px 75px 30px 60px;
}

.liste li {
  list-style-type: circle;  
}

.referenzendatum {
  color: #002255;
  font-size: 0.95em;
  /*font-family: verdana, arial, non-serif;*/
  /*font-weight: normal;*/
  width: 100px;
  padding: 0px 20px 0px 1px;
  float: left;
}

.referenzenanlage {
  color: #002255;
  font-size: 0.95em;
  /*font-family: verdana, arial, non-serif;*/
  /*font-weight: normal;*/
  border-left : 1px solid #999;
  width: 532px;
  padding: 0px 20px 0px 10px;
  float: left;
}

.mittig {
  margin: 40px 0px 40px 120px;
}

.Detailbild {
  margin: 30px 40px 10px 40px;
  padding:5px;
  width: auto;
  height: auto;
  border: 1px solid #ccc;
}


/* ID-Selektoren beginnen mit einem #. Im Dokument werden diese Formate jeweils einem <div>-Tag zugeordnet. */
/* ID's dürfen nur 1 x im html Dokument benutzt werden */

#content a {
  color: maroon;
  font-weight: bold;
  text-decoration: none;
}

#content a:hover {
  text-decoration: underline;
}

#footer a {
  color: #ccc;
  text-decoration: none;
}

#footer a:hover {
  color: #fff;
  text-decoration: none;
}


#menue {
  width: 198px;
  margin: 57px 0 20px 10px; 
}


#menue ul {
  list-style-type: none;
}


#menue ul li {
  margin: 5px 0 0 0;
}


#menue a {
  width: 165px;
  display: block;
  font-size: 0.9em;
  font-family: verdana, arial, sans-serif;
}

#menue li a:link {                    /* Nichtbesuchter Hyperlink  */
  padding: 6px 5px; 
  text-decoration: none;
  color: #393939;
  border-left: 10px solid #ccc;
  border-bottom: 1px dotted #aaa;
}

#menue li a:visited {                   /* Besuchter Hyperlink  */
  padding: 6px 5px;
  text-decoration: none;
  color: green /* #393939*/;
  border-left: 10px solid #ccc;
  border-bottom: 1px dotted #aaa;
}

#menue li a:hover {                   /* Mouse-over-Effekt im Hyperlink  */
  padding: 6px 5px;
  text-decoration: none;
  color: maroon;
  border-left: 10px solid #550000;
  border-bottom: 1px solid #999;
}

#menue li a:active {                   /* Angeklickter Hyperlink  */
  padding: 6px 5px;
  text-decoration: none;
  color: #393939;
  border-left: 10px solid #ccc;
  border-bottom: 1px dotted #aaa;
}


#overall {
  width: 1000px;
  text-align:center;
  margin: 0 auto 0 auto;
  background: #fff;
}



#header {
  width: 1000px;
  height: 140px;
  text-align: left;
  background: #00112b url(Images/bgheader.jpg) no-repeat;
  background-position: right 0px;
  border-right: 0px solid #000;
  position: relative;
}

#content {
  width: 1000px;
  background: none;
  border: none;
  margin-bottom: 0px;
}



#leftcol {
  width: 198px;
  height: auto;
  text-align: left;
  padding: 0 10px 0 0;
  margin: 0 0 0 0;
  float: left;
  background: none;
  /*   @media screen {display=none}   */
}

#rightcol {
  padding: 0 90px 0 10px;
  width: 685px;
  text-align: left;
  float: left;
  margin: 0 0 40px 0;
  position: relative;
  line-height: 1.4em;
}

#rightcolprojektnoklau {
  width: 640px;
  background-image:url(Images/blind.gif);
  z-index:1;
  position:absolute;
  top:140px;left:10px;
  border:0px solid #000000;
  height:auto;
}


#footer {
  width: 940px;
  height: 100px;
  padding: 20px 20px 0 40px;
  text-align: left;
  color: #fff;
  font-size: 0.8em;
  background: #00112b url(Images/bgfooter.jpg) no-repeat;
}

.clearer {                   /* Die Angabe clear beendet das Umfließen andere Elemente.  */
  clear: both;
}


#rightcol a img.refbild {
  padding:5px;
  margin: 0 -20px 5px 5px;
  width: 120px;
  height: 90px;
  border: 1px solid #ccc;
  float: right;
}

#rightcol a img.refbild:hover {
  padding:5px;
  margin: 0 -80px 5px 1px;
  width: 380px;
  height: auto;
}






/* **************************************** */
/* Formatierungen für das Anfragen Formular */
/* **************************************** */

form.kontakt {
width:400px;
margin: 10px 10px 0 10px;
text-align:left;
font-size:1.0em;
font-family: Verdana, Arial, sans-serif;
}

fieldset {
border: none;
}

label {
margin: 5px 0 0 0;
display:block;
font-size:0.9em;
font-family: 'Verdana, Arial, sans-serif;
color: #000;
}

input, textarea {
width: 350px;
font-size: 0.8em;
font-family: Verdana, Arial, sans-serif;
text-align: left;
padding: 3px;
color: #000;
background: #e8e8e8 url(Images/bginput.jpg) repeat-x;
border: 1px solid #898989;
}

input:hover, textarea:hover {
background: #f0f0f0 url(Images/bginputh.jpg) repeat-x;
border: 1px solid #898989;
}

textarea {
height: 200px;
padding: 3px;
}

input.button {
margin-top: 20px;
padding: 3px 6px 5px 6px;
color: #eee;
line-height: 28px;
width: 100px;
text-align: center;
background: url(Images/bgbutton.jpg) repeat-x;
font-size:14px;
font-weight: bold;
font-family: Verdana, Arial, sans-serif;
}

input.button:hover {
background: url(Images/bgbuttonhover.jpg) repeat-x;
color: #fff;
}

.fehler {
border:1px solid red;
}

#rightcol p.error {
font-size: 0.8em;
font-family: Verdana, Arial, sans-serif;
font-style: normal;
color: maroon;
}

.nofill {
display: none;
}


#rightcol a.downloadlink:link, #rightcol a.downloadlink:visited,
#rightcol a.downloadlink:active {
font-family:Arial;
font-size:14px;
text-align:center;
text-Decoration: none;
padding:5px 8px;
background: url(Images/bgbutton.jpg) repeat-x;
color: #eee;
}

#rightcol a.downloadlink:hover {
/* color:ffffff;
background-color:#5555aa;
border-left:2px solid #efefff;
border-top:2px solid #efefff;
border-right:2px solid #000055;
border-bottom:2px solid #000055; */

background: url(Images/bgbuttonhover.jpg) repeat-x;
color: #fff;
}




