/*
    KXH, the XML/XSLT framework for my personal website.
    Copyright (C) 2011  Daniel Kraft <d@domob.eu>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

/* Build the basic page structure via CSS positioning.  */

#navigation
{
  position: fixed;
  width: 8em;
  top: 0;
  left: 0;
  padding-left: 0.1em;
  padding-right: 0;
}

#mainBody
{
  position: absolute;
  top: 0;
  left: 8em;
  min-height: 99%;
  border: thin solid #090;
  background-color: white;
  padding: 0 0.2em 0.2em 0.2em;
}

#footerSeparation
{
  margin-top: 2em;
}
