var screenWidth
= screen.width;
var screenHeight
= screen.height;
var measureUnits
= "px";
divHeaderBottomLine.css('top', content.position().top)
.css('position', 'absolute')
css('left', content.position().left);
divHeaderBottomLine.width('100%');
divHeaderBottomLine.height((screenHeight * 0.0010416666666667) + measureUnits);
/** Black surface layer */
divBlackSurface.css('top', content.position().top)
.css('position', 'absolute')
.css('left', content.position().left);
divBlackSurface.width(page.width());
/** This is done in order not to exceed the page size (avoiding the appearance of a scroll) */
var totalHeaderHeight = header.height();
totalHeaderHeight += parseInt(header.css('border-top-width'));
totalHeaderHeight += parseInt(header.css('border-bottom-width'));
totalHeaderHeight += divHeaderBottomLine.height();
divBlackSurface.height(page.height()-totalHeaderHeight);