/*  =========================================================

1. Allgemeine Selektoren
   - Block-Elemente
   - Inline-Elemente
   - Allgemeine Klassen

2. Layoutbereiche
   - Wrapper
   - Kopfbereich
   - Navibereich
   - Suche
   - Breadcrumbs
   - Textbereich
   - Fussbereich

3. Spezielle Seiten
   - Kontaktformular

========================================================== */

/* ===============================

   =1. Allgemeine Selektoren

=============================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	vertical-align: baseline;
}

html {height: 101%;}

body {
    background: #FFF url(../grafik/fond.gif) center top repeat-x;
    font-family: Arial, Helvetica, Tahoma, sans-serif;
    text-align: left;
}

:focus {outline: 0;}

em {font-style: italic;}

/* ===============================
   =Block-Elemente
=============================== */

h1 {
    color: #90000F;
    font-weight: bold;
    margin-bottom: 0.8em;
    font-size: 110%;
}

h2 {
    color: #90000F;
    font-weight: bold;
    margin-bottom: 0.3em;
    font-size: 100%;
}

p, ul, ol {
    margin: 0 0 1em 0;
    color: #454545;
}

ol, ul {
    list-style: none;
}

/* ===============================
   =Inline-Elemente
=============================== */

a {
    color: #90000F;
    text-decoration: underline;
}

a:hover {
    color: #454545;
    text-decoration: none;
}

/* ===============================
   =Classes allgemeiner Art
=============================== */

.left {
    float: left;
    display: block;
    padding-right: 20px;
}

.right {
    float: right;
    display: block;
}

.clear {
    clear: both;
}

/* ========================================

  =2. LAYOUTBEREICHE

========================================= */

#pagewrapper {
    width: 910px;
    margin: 0 auto;
    text-align: left;
    font-size: 100%
}

/* ===============================
   =KOPFBEREICH
=============================== */

#header {
    height: 160px;
    padding: 0;
    margin: 0;
}

#header-navi {
    margin: 18px 20px 0 0;
    float: right;
    color: #FFF;
}

#header-navi p a {
    color: #FFF;
    font-size: 80%;
    text-decoration: none;
}

#header-navi p a:hover {
    text-decoration: underline;
}

#logo {
   width: 321px;
   float: right;
   height: 51px;
   padding-right: 20px;
}

#logo img {
    margin: 19px 0 0 0;
    padding: 0;
}

/* ===============================
   =NAVI
=============================== */

#navi {
    float: left;
    width: 910px;
}

#navi ul li {
    display: inline;
    font-size: 100%;
    font-weight: bold;
}

#navi ul li a {
    color: #FFF;
    height:35px;
    text-decoration: none;
    text-align: center;
    padding: 45px 0 0 0;
}

#navi a span {
    position: relative;
    top: -15px;
}

#navi a em {
    font-style: normal;
    position: relative;
    top: -7.5px;
}

#navi ul li a.aktiv,
#navi ul li a:hover {
    color: #FFF;
}

#link-1                       {width: 141px; float:left;}
#link-1.aktiv, #link-1:hover  {background: url(../grafik/link-1.jpg) no-repeat;}

#link-2                       {background: url(../grafik/link-2.jpg) 0 85px no-repeat; width: 177px; float:left;}
#link-2.aktiv, #link-2:hover  {background: url(../grafik/link-2.jpg) no-repeat;}

#link-3                       {background: url(../grafik/link-3.jpg) 0 85px no-repeat; width: 160px; float:left;}
#link-3.aktiv, #link-3:hover  {background: url(../grafik/link-3.jpg) no-repeat;}

#link-4                       {background: url(../grafik/link-4.jpg) 0 85px no-repeat; width: 170px; float:left;}
#link-4.aktiv, #link-4:hover  {background: url(../grafik/link-4.jpg) no-repeat;}

#link-5                       {background: url(../grafik/link-5.jpg) 0 85px no-repeat; width: 262px; float:left;}
#link-5.aktiv, #link-5:hover  {background: url(../grafik/link-5.jpg) no-repeat;}


#subnavi {
    float: left;
    width: 910px;
    height: 35px;
    margin: 15px 0 0 15px;
}

*html #subnavi {
    margin: 15px 0 2px 8px;
}

*+html #subnavi {
    margin: 15px 0 2px 15px;
}

#subnavi ul li {
    display: inline;
    font-size: 95%;
}

#subnavi ul li a {
    color: #222;
    text-decoration: none;
    padding: 0 5px;
}

#subnavi ul li a:hover,
#subnavi ul li a.aktiv {
    color: #90000F;
}

/* ===============================
   =MAIN
=============================== */

#content {
    width: 910px;
    float: left;
    line-height: 1.5;
    background: #FFF url(../grafik/fond-inhalt.jpg) no-repeat;
    margin-bottom: 30px;
}

#main {
    float: left;
    width: 425px;
    margin: 30px 10px 0 20px;
}

*html #main {
    width: 420px;
    margin: 30px 10px 0 10px;
}

#main-breit {
    float: left;
    width: 850px;
    margin: 30px 10px 0 20px;
}

#right {
    float: left;
    width: 425px;
    margin: 30px 20px 0 10px;
}

#right form {
    font-size: 85%;
}


*html #right {
    width: 410px;
    margin: 30px 0px 0 10px;
}

/* ===============================
   =MAIN
=============================== */

#main p,
#main-breit p {
    font-size: 90%;
}

#main ul,
#main-breit ul {
    list-style: disc;
    margin-left: 19px;
    font-size: 90%;
}

#main ul li,
#main-breit ul li {
    margin-bottom: 8px;
}

#main ul li ul li,
#main-breit ul li ul li {
    margin-top: 3px;
    margin-bottom: 3px;
    font-size: 110%;
}

#bildergalerie, #bildergalerie2 {
    margin-top: 7px;
    width: 385px;
    background-color: #E9E9E9;
    border-top: 1px solid #959595;
    border-bottom: 1px solid #959595;
    padding: 15px;
}  

#bildleiste {
    margin: 10px 0 0 1px;
}

#bildleiste p,
#bildergalerie p {
    margin: 0;
    padding: 0;
}

#bildleiste p a {
    font-size: 90%;
}

#bildleiste a img  {
    border: 3px solid #FFF;
    margin: 6px 4px 0 4px;
}

#bildleiste a.aktiv img,
#bildleiste a:hover img {
    border: 3px solid #C5C5C5;
}

#download {
    margin: 0;
}

#download p {
    margin: 0;
    padding: 0;
}

#download p a {
    font-size: 90%;
}


table               {width:425px;height:20px; margin-bottom: 20px; font-size:80%; background-color: #DDD; padding: 5px;border: 2px solid #FFF;}
table th            {background: #000;color: #fff;padding:5px; border: 2px solid #FFF;font-weight:bold;}
table tr td         {background-color: #EFEFEF;  padding: 5px;border: 2px solid #FFF;}
table tr td em      {font-style: normal;font-size:12px;color:#90000F;}


    /* ===============================
       =FUSSBEREICH
    =============================== */

#footer {
    height: 40px;
    background: url(../grafik/footer.gif) no-repeat;
    margin: 0;
}

#footer p {
    font-size: 80%;
    float:left;
    color: #FFF;
    margin: 11px 16px 0 16px;
}

*html #footer p {
    margin: 11px 16px 0 8px;
}

#footer p a {
    color: #FFF;
    text-decoration: underline;
}

#footer p a:hover {
    text-decoration: none;
}

/* ===============================

   =3. Spezielle Seiten

=============================== */

/* ===============================
   Formulare
=============================== */

span.tabulator {
    float: left;
    width: 80px;
    display:block;
    height: 15px;
    font-weight: normal;
}

span.tabulator2 {
    float: left;
    width: 160px;
    display:block;
    height: 15px;
    font-weight: normal;
}

label.farbe {
    color: #666;
    font-style: italic;
}

span.fehler {color: #D1020E;}
.text_kontakt {font-size: 90%;}
input, textarea,select {
    margin-bottom:10px;
    width: 280px;
    background-color: #F8F8F8;
    border: 1px solid #005178;
    font-size: 90%; color:#333;
    font-family: Arial, Verdana, sans-serif;
}

.checkbox {
display: block;
    margin: 10px 0;
}

.checkbox input {
    width: auto;
    margin: 0;
}


.checkbox i {
    font-size: 90%;
    font-style: normal;
}

*html input, *html textarea, *html select {
    width: 243px;
}

input.button {width: 80px; text-align:left;padding-left: 5px;}
input.button2 {width: 20px; text-align:left; border: 0px;}

ol { font-weight: bold;font-size:14px;margin-left:28px;list-style-type:decimal; }
ol li { margin-bottom: 15px; }
ol span { display: block; font-weight: normal;}

