body
{
  background-color: #FC9; /* light salmon color */
  color: black;
}

#page
{
  background-image: url("../GRAPHICS/JPG/gemuese.jpg");
}

#header
{
  background-color: transparent;
  color: #600; /* Dark chocolate */
  text-align: center;
}

#content
{
  border: medium groove #FF3; /* light-yellow */
}

#menu1 ul, #menu2 ul
{
  list-style-type: none;
  margin: 0;
  padding-left: 40px;
  /* Gecko-based browsers set a default 40px padding-left
  for <ul> elements. So this declaration sets the same CSS
  rule for IE and Opera browsers. */
}

#menu1 li, #menu2 li
{
  background-color: #400; /* Very dark chocolate */
  /* If image background-image gemuese.jpg is not loaded
  - for whatever reasons - , then there must be sufficient color
  contrast between yellow-corn color and background color. So,
  this declaration ensures acceptable accessibility */
  border-left: 2px solid #FC6; /* yellow-corn */
  color: #FC6;
  text-align: center;
}

#menu1 a, #menu2 a
{
  background-color: #400; /* Very dark chocolate */
  /* If image background-image gemuese.jpg is not loaded
  - for whatever reasons - , then there must be sufficient color
  contrast between yellow-corn color and background color. So,
  this declaration ensures acceptable accessibility */
  color: #FC6;
  font-size: 15px;
  text-decoration: none;
}

#menu1 a:hover, #menu2 a:hover
{
  font-weight: bold;
}

#menu1 a:focus, #menu2 a:focus
{
  font-weight: bold;
  outline: 2px dotted #FC6; /* yellow-corn */
  outline-offset: 6px;
}

#footer
{
position: absolute;
top: 600px;
}