/*
  author:     Ad Verbunt
  file:       ws02-style-fp.css
  usage:      <head><link rel="stylesheet" type="text/css" href="ws02-style-fp.css">

  notes:
    There are 16 widely known color names with their sRGB values:
     Black  = #000000    Green  = #008000
     Silver = #C0C0C0    Lime   = #00FF00
     Gray   = #808080    Olive  = #808000
     White  = #FFFFFF    Yellow = #FFFF00
     Maroon = #800000    Navy   = #000080
     Red    = #FF0000    Blue   = #0000FF
     Purple = #800080    Teal   = #008080
     Fuchsia= #FF00FF    Aqua   = #00FFFF


   delete IE cache if css fails.

*/



/***
 *** elements 
 ***/


body{ 
 color:            black; 
 background-color: white; 
 margin-left:      1cm; 
 margin-right:     1cm;  /* ruhig mehr als links */
 margin-top:       5mm;	
 margin-bottom:    10mm;	
 font-family:      Helvetica,Arial,sans-serif;		
}

/* unbesucht */
/* mouse over */
/* niedergehalten */
/* besucht */
a:link    { text-decoration:none;   background-color:#ffffff;    color:#800080;  } 
a:hover   { text-decoration:none; background-color:#000000;    color:#ffffff; } 
a:active  { text-decoration:none; background-color:#808080;  color:red;   } 
a:visited { text-decoration:none;   background-color:#ffffff;    color:#800080;  } 


table     {  width:            85%; }

dt
{  
 color:            black; 
 background-color: #eeeeee; 
/* font-weight:      bold; */
 margin-top:       1cm; /* space before definition list term */
 margin-bottom:    3mm; /* space after definition list term */
}


code      { font-family: courier, monospace; }


ul li     
{
  list-style-image: none; /* url(http://www.imaginary.com/images/whiteball.gif); */
  list-style-type: disc;
}

ul ul li  
{
  list-style-image: none;
  list-style-type: circle;
}

ul ul ul li 
{
  list-style-image: none;
  list-style-type: square;
}




/*** 
 *** classes
 *** 
 ***   for using these properties, you have to name them: 
 ***   example:  <div class="center">
 ***
 ***   most of these definitions are straight ahead. There are only
 ***   necessary because "HTML 4 strict" removed some attributes from
 ***   elements (eg. width from hr) or elements (eg. center).
 ***/

.right   {   text-align:       right  }

.center  {   text-align:       center }

.myname 
{                              /* this class will be used only once on a page */
 margin-top:       3cm;     
 margin-bottom:    0cm;     
 font-size:        30pt; 
 text-align:       right;
}

.lasthr
{                              /* this class will be used only once on a page */
 margin-top:       3cm;     
 width:            60%;
}

td.tdhead
{
 vertical-align:  baseline;
 font-weight:     bold;
 width:           2cm;
}


