<!-- this html *not* rendered by bootstrap css -->
<html>
<head>
<script>
function subst() {
var vars={};
var x=window.location.search.substring(1).split('&');
for (var i in x) {var z=x[i].split('=',2);vars[z[0]] = unescape(z[1]);}
var x=['frompage','topage','page','webpage','section','subsection','subsubsection'];
for (var i in x) {
var y = document.getElementsByClassName(x[i]);
for (var j=0; j<y.length; ++j) y[j].textContent = vars[x[i]];
}
}
</script>
<style type="text/css">
div { font-family: "Times New Roman", serif; }
#pages { font-size: 9pt; margin-bottom: 10px; text-align: center; }
</style>
</head>
<body onload="subst()">
<div id="pages">
Page <span class="page"></span> of <span class="topage"></span>
</div>
</body>
</html>