@charset "utf-8";
/* CSS Document */
/* &copy;1999-2026 W. Dwyne */
/*  this is global-print.css

    Purpose - to provide a simple clean print

CSS files  used in this web site - all of the CSS file are in (C:\Users\billd\Documents\My Web Sites\Dwyne 2018\css)

    global-borderless.css   for a page with a full scalable background image and
                            drop down menu system ( link/call first )
    global-common.css       required for all pages(Contains font specs)
    global-print.css        to make printing more readable
    legacy-print.css        Unique for Legacy Family Tree generated files
    effects.css             for the depreciated tags demo page

    The exception is background_i.css or background_g.css
    which are specific to the background picture, an explanation can be found in the dir images_index or images_gen


Ok to copy/use this css.  Please leave the comments and credit.  Thanks Bill Dwyne (www.dwyne.net)

*/

/* hide the clutter: namely, the main navigation and footer. */

/* The rules: (. to target class=) (no . to target HTML tags <a) - (# to target an id=) */
/* Set the printing fonts */

body {
    background: #fff; /* Background White */
    color: #000; /* Text color Black */
    font:
        12pt Georgia,
        'Times New Roman',
        Times,
        serif;
    line-height: 1.3;
    margin-left: 5pt;
}

h1 {
    display: inline;
    font-size: 16pt;
}

h2 {
    display: inline;
    font-size: 12pt;
}

/* Make the links black*/
a {
    color: #000;
    display: inline;
    text-decoration: none;
}

.footer,
#home {
    display: none;
}

body::after {
    content: 'Thanks. Hopefully this info will prove to be useful in your research.';
    font-size: 20pt;
    padding-top: 30pt;
}
