<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

// This dummy style must be here because the xml tags above cause some
// browsers (Konqueror, Mozilla) to ignore the first style
.dummy { background-color: white }
A:link   
{  
  text-decoration:  none;
  color:  blue;
  }  

A:visited   
{  
  text-decoration:  none;
  color:   blue;
  }  

A:active 
{  
  text-decoration:  none;
  color:  blue;
  }  

A:hover  
{  
  color:   green;
  text-decoration: none;
  color: #fff;
  background-color: #069;
  }  

hr
{
  visibility: visible;
  color: #036;
  height: 2px;
  }

address
{
  font-family: lucida;
  letter-spacing: normal;
  }

body
{
  font-family: verdana;
  background-color: #eeb;
  }

table.status td
{ 
  border-bottom: solid red;
  border-right: solid blue;
  text-align: left;
  padding-right: 1%;
  padding-bottom: 1%;
  }

table.status
{ 
  border: solid black;
  }

.heading-bg1
{ 
  color: white;
  background-color: #c09ec0;
 }

.heading-bg2
{ 
  color: white;
  background-color: brown;
 }

pre.programlisting {
/*      background-color: #FFFFFF; */
        padding: 6px;
        border-width: 2px;
        border-style: solid;
}

</xsl:stylesheet>
