﻿/* ======================================================================
  Stylesheet für Webpräsenz Bettina Zwirner Textildesign und Handdruck
  Stand: 18.1.2013
  Datei: style.css
  Datum: 10.04.2013 
  Autor: Barbara Rehbehn
  
  Aufbau: 1. Kalibrierung und allgemeine Styles
          2. Styles für Layoutbereiche
           
  Farben:
  schwarz: #000;
  grau: #8e8a8a;
  
  =======================================================================*/

/* ==========================================
  1. Kalibrierung und allgemeine Styles
  - gelten für de gesamte Seite -
  ===========================================*/

/*Kalibrierung der wichtigsten Abstände*/
* {padding: 0; margin: 0; }/* setzt alle Abstände auf Null*/
   
/*Abstand nach unten*/
h2, p, ul, ol, table {margin-bottom: 1em;}

h1 { font-size: 130%;
     font-weight:lighter;
     color: #000;
     margin-bottom: 0.5em;
}

h2 { font-size: 110%;
     font-weight:lighter;
     color: #000;
     }
    
h3 { font-size: 105%;
     font-weight:lighter;
     color: #000;
     margin-bottom: 0.5em;
     }
     

/*wie wird ein Link gekennzeichnet?*/
a {color: black;
    text-decoration: none;
    outline: none;
  }

a:visited {
    color: black;
    text-decoration: none;
}



/*Verschachtelte Listen ohne Abstand - verhindert Lücke in verschachtelter Liste*/
ul ul {margin-bottom: 0; }

/*Abstand von links*/
li {margin-left: 0px; }                    
                             
 ul li {
   list-style-type: none; 
}

html {height: 101%;}  /*erzwingt Scrollbar im Firefox*/

body {  color: black; /* Schriftfarbe */
        background-color: white; /* Hintergrundfarbe */
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 10pt;
        text-align: center; /*für Zentrierung im IE, macht aber auch text zentriert muss wieder aufgehoben werden*/
}


/*Allgemeine Klassen und IDs*/

/* macht Liste für die Thumbnails nebeneinander */
li.gal {
    display: inline;
    list-style-type: none;
    margin-left: 1px;
    
    }
    
   /*verhindert Abstand unter den Thumbnails*/ 
ul.gal {
    margin-bottom: 0;
}
    
/* macht Liste für Lebenslauf untereinander */
li.reg {
    display: block;
    list-style-type: none;
    margin-bottom: 10px; 
    }

/* Container für den Header*/
#top_leiste { color: black;
              background-color: white;
}



/* ==========================================
  2. Styles für Layout-Bereiche
  - gelten nur im entsprechenden Bereich
  ===========================================*/

#wrapper { color: black;
           background-color: white;
           width: 775px; /*Breite des Inhaltsbereichs musste 5px breiter werden für den IE*/
           height: auto;
           margin-top: 80px;
           margin-right: auto;
           margin-bottom: 10px;
           margin-left: auto; /*Abstand automatisch, d.h. links u rechts immer gleich, ergibt Zentrierung*/
           
           border: 0px solid black;
}

#kopfbereich { height: 65px;
               color: black;
               background-color: white;
               margin-bottom: 1em;
               margin-left: 6px;
               border: 0px solid black;
}

#kopfbereich img {
    border: none;
}

#navibereich {
    float: left;
    width: 250px;
    border: 0px solid black;
    text-align: left;
    color: black;
    background-color: white;
    padding-left: 6px;
    padding-top: 50px;
    border: 0px solid black;
  
    }



#navibereich a {
    background-color: white;
    padding: 0px;
    border: none;
    text-decoration: none;
    
}


#navibereich img {
    /*Abstand zw den Buttons*/
    margin: 5px 0px;
    border: none;
}

/*Abstand zw Unternavigation*/
#subnav img{
    margin: 2px 0px 2px 30px; /*Abstände müssen wg IE über margin definiert werden*/
   }
   
/*Abstand der Unternavigation von links*/

#subnav li{
    text-align: left;
}


#textbereich {
     width:509px;
     margin-left: 260px;
     padding-top: 46px;
     border: 0px solid black;
     text-align: left; /*um Zentrierung im IE für Text aufzuheben*/

     }
     


#textbereich a {
    text-decoration: underline;
        }
        
#textbereich img {
    border:none;
        }
    



#textbereich a:hover {
    text-decoration: none;
    }

#textbereich a:visited {
    color: #8e8a8a;
    }

#textbereich table {
    font-size: 10pt;
}




 
 /*Adresszeile unten rechts*/   
    
#fussbereich {
    width: 770px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    border: 0px solid black;
    
}

#fussbereich address {
    font-style: normal;
    font-size: 8pt;
    color: #000;
    text-align: right;
    margin-right: 10px;
    
}


/* ==========================================
  ENDE DES STYLESHEETS
  ===========================================*/

