/*  ====================================================
Reset, restoration and basic formatting
Filename:  fundament.css
========================================================== */


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

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

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

/* margin listelements more */
 

/* 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: disc;}
ol { list-style-type: decimal; }

/* Rank 2 */
ul ul { list-style-type: square; }
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 {
   background-color: white;
   color: black; 
   font-family: Arial, Helvetica, sans-serif;
   font-size: 12px;
}


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