/* Formatvorlage: menu-v.css */
/* Erstellt: 22.10.2004 von Johann Haiden; */
/* Projekt: CSS-Technik - www.haiden.at */

#inhalt
   {
   width: 95%;
   }
   /* hier folgt das wirklich Wichtige ;) */
body
   {
   height:100%;
   width: 100%;
/*   width: expression(document.body.clientwidth - 210 + "px"); */
/*   width:100%;*/
/*   background:#FFCC00;*/
   margin: 10px;
   padding: 10px;
/*   margin:0 und padding:0 sind notwendig um die "blinde" Scrollleiste im IE zu entfernen */
   }
#menu
   {
   left:0;
   top:60;
   padding: 10px 0 10px 0;
   width:200px;
   height:100%;
   background:#FFFFCC;
   z-index:4;
   }
body>#menu
   { /* wird von allen Browsern außer IE unterstützt */
   position: fixed;
   overflow:auto;
   }
body>#rahmen
   { /* wird von allen Browsern außer IE unterstützt */
   padding-left: 210px;
   overflow:auto;
   }

body>#inhalt
   { /* wird von allen Browsern außer IE unterstützt */
   position:static;
   overflow:auto;
   }