/* general LAYOUT */
div#navBorder		{ position: absolute;}
div#mastHead		{ position: absolute;}
div#Content	        { position: absolute;}
/* Note: The footer is a "sub" of Content, si it can be positioned it at the bottom */
div#Footer 		{ position: static;}
/**Note: the mastHead/navBorder shoudn't scroll: use 'fixed'; and 'absolute' as fall-back !! */
body>div#navBorder	{ position: fixed;}
body>div#mastHead	{ position: fixed;}

/* NOTE The '200em' below are more lines then fit on more than fit on most screens*/
div#navBorder 		{ top: 0;   width:15%; z-index:10; height: 200em;  left:0;}
div#mastHead  		{ top: 0px; width:85%; z-index:90; height: 100px;  left:15%;}
div#Content             { top: 100px; /* same as 'div#mastHead=>height', has to be pixels!! */
                          width:84%; z-index:0;  height: auto; left:15%;
                          border-left: 0.5em solid white;}		/* Keep txt away of navBorder, in same collor as background */

div#Footer 		{ clear: both}
#Footer p 		{ margin-top: 0; }

/* Bazaar revno=317 */
