/* XHTML y CSS con AMAYA
   Bartolomé Sintes Marco
   http://www.mclibre.org

   CSS ejercicio: Restaurante
   14 de noviembre de 2006
*/

body { 
  background: white; 
  color: black; 
  font-family: sans-serif; 
  margin: 0px; 
  padding: 0px; 
} 

h1 { 
  background: lightgreen; 
  font-size: 200%; 
  height: 1em; 
  left: 0px; 
  margin-top: 0px; 
  position: absolute; 
  top: 0px; 
  width: 100%;
}

div#indice { 
  background: lightblue; 
  border: #666666 1px dotted; 
  left: 0px; 
  position: absolute; 
  top: 2.5em; 
  width: 33%; 
}

div#carta  { 
  background: #cccccc;
  height: 80%;
  left: 34%; 
  overflow: hidden; 
  position: absolute; 
  top: 2.5em; 
  width: 65%; 
}

div#carta div { 
  height: 100%; 
  overflow: auto; 
  width: 100%; 
}

