

#thumbnail {
   margin:0;
   padding:0;
   width:220px;
   height:436px;  /* Tatsächliche Bildhöhe */
   float:left;    /* Bilder in Vollansicht daneben */ 
   overflow:auto; /* Scrollbalken bei Bedarf */
   background-color: black;
 } 
 
 #thumnail li {
  list-style:none;
}

 #thumbnail a {
  display:block;
  color: white; /* Für Alternativtext */
  background-color: black;
  width: 188px;
  padding: 6px;
  text-align: center;
 }
 
 #thumbnail li a:hover {
   background-color: silver;
 }
  
#thumbnail img {
   border: 1px solid white;
}
 
#fullframe {
  margin:0;
  padding:0;
  margin-left:220px;
  width:652px;           
  height:436px;          
  overflow:hidden;  /* Nur ein Bild anzeigen */
  background-color:black;
 } 
 
 #fullframe li {
  list-style:none;
 }

#fullframe li a {
  display:block;
}
  
#fullframe li img {
  display:block;
  margin:0 auto;      /* Zentrieren */
  border: 1px solid white;
} 

