/* Dvousloupcov layout pomoc pevnho umstn */

body {
  font-family: Arial, Verdana, sans-serif;
  font-size: small;
  margin: 0;
}
#obal {                 /* obaluje celou WWW strnku */
  width: 700px;
  position:relative;    /* zajiuje, e absolutn poloha navigace bude odvozena od polohy elementu div#obal */
  margin: 0 auto;
  background: yellow;
}
#zahlavi {
  width: 100%;
  height: 100px;
  background: red;
}
#menu {
  width: 25%;
  position: absolute;
  top: 100px;
}
#obsah {
  width: 75%;
  position: relative;
  left: 25%;
}
#zapati {
  background: silver;
}
h1, h2 {
  margin-top: 0;
}
