﻿/* Dvousloupcový layout pomocí plovoucího umístění */

body {
  font-family: Arial, Verdana, sans-serif;
  font-size: small;
  margin: 0;
}
#obal {           /* obaluje celou WWW stránku */
  width: 700px;
  margin: 0 auto;
  background: yellow;
}
#zahlavi {
  width: 100%;
  height: 100px;
  background: red;
}
#hlavni {
  width: 100%;
  float: left;
  background: yellow;
}
#menu {
  width: 25%;
  float: left;
}
#obsah {
  width: 75%;
  float: right;
}
#zapati {
  width: 700px;
  float: left;  
  background: silver;
}
h1, h2 {
  margin-top: 0;
}
