Div to fill remaining space on page (IE, quirks-mode only)
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Ehr</title>
<style type="text/css" media="screen" id="test">
html, body {height: 100%;}
#masthead {
height: 90px;
position: absolute;
width: 100%;
}
#navbar {
height: 30px;
padding: 4px;
position: absolute;
left: 0px;
bottom: 0px;
width: 100%;
}
#content {
height: 100%;
padding-top: 93px;
}
</style>
</head>
<body style="margin:0px;padding:0px;">
<div id="masthead">
MASTHEAD (fixed size, absolute positioned to top)
<div id="navbar">NAV (nested inside masthead)</div>
</div>
<div id="content">
CONTENT (standard document positioned, with padding-top of masthead height)
</div>
</body>
</html>