/* design-1 - cascading style sheet (css) */

body {
  font-family: luxi sans, trebuchet ms, bitstream vera sans, sans-serif;
  background-color: #eeeeee;
  color: #555753;
}

p.programmcode {
  font-family: bitstream vera sans mono, monospace;
  color: #a40000;
  font-size: 90%;
}

/* Links */

a:link, a:visited, a:active, a:hover
{
  text-decoration: none;
  color: #ce5c00;
}

a:active, a:hover
{
   text-decoration: underline;
}

a.extern:link, a.extern:visited, a.extern:active, a.extern:hover
{
  background: url(images/external.png) center right no-repeat;
  padding-right: 13px;
  text-decoration: none;
  color: #ce5c00;
}

a.extern:active, a.extern:hover
{
   text-decoration: underline;
}

/* Seitenstruktur */
        
#title {
  border-bottom: 1px dotted #555753;
  font-family: luxi serif, georgia, times new roman, times, serif;
  color: #555555;
  font-size: 110%;
  width: 98%;
  margin-left: 1%;
  margin-right: 1%;
  float: left;
}

#left {
  width: 18%;
  margin-left: 1%;
  float: left;
  line-height: 2.0em;
  font-size: 90%;
}

#content {
  width: 80%;
  margin-right: 1%;
  float: left;
}	
        
#footer {
  border-top: 1px dotted #555753;
  font-family: luxi serif, georgia, times new roman, times, serif;
  font-size: 80%;
  width: 98%;
  margin-left: 1%;
  margin-right: 1%;
  float: left;
}                                                                                              
        
