a         { padding: .2em; vertical-align: middle; }
a:focus   { background-color: red; color: black;}
a:hover   { background-color: blue; color: white; }
a:active  { background-color: yellow; color: black; }

h1 { 
    color: red; 
    font: 300% cursive;
  }
  
h1, h2 { 
    background-color: #ccc;
    border-radius: .5em; 
    border: thin solid red;
  }

li {
    width: 10em;
    text-align: center;	
  }	
      
  li:first-child {
    background-color: gold;
    border: 1px solid;
    border-radius: 5px;
  }

  li:nth-child(2) {
    background-color: lightgrey; /* silver */
    border: 1px solid;
    border-radius: 5px;
  } 
  
  li:nth-child(3) {
    background-color: #cd7f32;   /* bronze */
    border: 1px solid;
    border-radius: 5px;
  }

th {
    background-color: #666; 
    color: #fff;
  }

td {
  vertical-align: middle;
  border: 1px solid blue;
  } 

tr {
    background-color: #e8f076;
    color: #000;
  }

  tr:nth-child(odd) {
    background-color: #6b95f0 ;
  }

img {
  border-style: none;
}

td:hover    {background-color: blue; color: white;}

img:focus   { background-color: red; color: black;}
img:hover   { background-color: blue; color: white; }
img:active  { background-color: yellow; color: black; }


div.table {
  display: table;
  width: calc(100% - 10px);
  border: 1px solid blue;
  padding: 5px;
}
div.spalte { 
  display: table-cell;
  border: thin solid red;
  width: 200px;
  padding: 5px;
}

.visu {
  padding: 1px 4px 1px 4px;
  background-color: #fff;
  font-weight: bold;
  text-shadow: none;
  color: #000;
  -moz-border-radius: .2em;
  -webkit-border-radius: .2em;
  border-radius: .2em;
  background: #fff;
      background-image: none;
  background-image: -webkit-gradient(linear, left, left bottom, from(#fff), to(#ccc));
  background-image: -webkit-linear-gradient(left, #fff, #ccc);
  background-image: -moz-linear-gradient(left, #fff, #ccc);
  background-image: -ms-linear-gradient(left, #fff, #ccc);
  background-image: -o-linear-gradient(left, #fff, #ccc);
  background-image: linear-gradient(left, #fff, #ccc);
}

.smart {
  padding: 1px 3px 1px 2px;
  text-shadow: none;
  font-weight: 200;
}




