/*  ====================================================
Reset, restoration and basic formatting
Filename:  fundament.css
Date:      20.08.2008
Author:    Theresa Eismann
========================================================== */

@media all { 

/* ==============================================
   PART I - Reset
   ============================================== */
   
* { padding: 0; margin: 0; }

/* ==============================================
   PART II - Restoration
   ============================================== */

/* margin-bottom für headlines, breaks, lists etc. */

h1, h2, h3, h4, h5, h6, 
p, blockquote, address, pre, 
ul, ol, dl, table {
   margin-bottom: 1em;
}

/* margin-left for lists */
ul, ol, dl { margin-left: 1em; }

/* margin listelements more */
li { margin-left: 1em; } 

/* Interlaced lists without margit-top and -bottom */
ul ul, ul ol, ul dl,
ol ul, ol ol, ol dl,
dl ul, dl ol, dl dl {
   margin-top: 0;
   margin-bottom: 0;
}

/* Bullets for lists */

/* Rank 1 */
ul { list-style-type: square; }
ol { list-style-type: decimal; }

/* Rank 2 */
ul ul { list-style-type: disc; }
ol ol { list-style-type: lower-alpha; }

ul ol { list-style-type: decimal; }
ol ul { list-style-type: square; }

/* Rank 3 */
ol ol ol, ol ol ul, ol ul ul, ol ul ol,
ul ul ul, ul ul ol, ul ol ol, ul ol ul {
   list-style-type: circle;
} 

/* Reset padding in select boxes */
option { padding-left: 0.2em; padding-right: 0.3em; }

/* No border at fieldset and linked pictures */
fieldset, a img { border: none; }


/* ==========================================
   PART III -   Basic formatting
   ======================================= */

/* =============================================
   1. html and body */

/* Always show scrollbar in Firefox */
html { height: 101%; }

body {
   font-family: Arial, Helvetica, sans-serif;
   font-size: small; 
}


/* =============================================
   2. Fonts for headlines   */

h1, h2, h3, h4, h5, h6 {
   font-family: Arial, Helvetica, sans-serif;
   font-weight: bold; 
}

h1 { font-size: 200%; }     /* approx. 26px */ 
h2 { font-size: 140%; color: #C60E15; }
h3 { font-size: 105% }   

} /* End @media

/* ======================================
   E N D fundament.css
   ====================================== */

