pub const PAGE_WIDTH_PT: f32 = 595.276;
pub const PAGE_HEIGHT_PT: f32 = 841.890;
pub const DEFAULT_MARGIN_PT: f32 = 36.0;
pub const DEFAULT_DPI: u32 = 72;
pub const PAGE_MARGIN_TOP_PT: f32 = 36.0;
pub const PAGE_MARGIN_BOTTOM_PT: f32 = 36.0;
pub const PAGE_MARGIN_LEFT_PT: f32 = 54.0;
pub const PAGE_MARGIN_RIGHT_PT: f32 = 54.0;
pub const CONTENT_AREA_X_PT: f32 = PAGE_MARGIN_LEFT_PT;
pub const CONTENT_AREA_Y_PT: f32 = PAGE_MARGIN_TOP_PT;
pub const CONTENT_AREA_WIDTH_PT: f32 = PAGE_WIDTH_PT - PAGE_MARGIN_LEFT_PT - PAGE_MARGIN_RIGHT_PT;
pub const CONTENT_AREA_HEIGHT_PT: f32 = PAGE_HEIGHT_PT - PAGE_MARGIN_TOP_PT - PAGE_MARGIN_BOTTOM_PT;