@charset "utf-8";
/* CSS Document */

@media print {
* { /* Sets all content to Black/White */
        background: none !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
 
        /* Images, vectors and such */
        filter: Gray();                          /* IE4-8: depreciated */
        filter: url('desaturate.svg#grayscale'); /* SVG version for IE10, Firefox, Safari 5 and Opera */
        -webkit-filter: grayscale(100%);         /* Chrome + Safari 6 */
        -moz-filter: grayscale(100%);            /* Future proof */
        -ms-filter: grayscale(100%);             /* Future proof */
        -o-filter: grayscale(100%);              /* Future proof */
        filter: grayscale(100%);                 /* Future proof or polyfilled */
    }
 
body { background: white;  font-family: Georgia, 'Times New Roman', serif; }
/* Clear Unorder Lists for all lists */
* {margin:0;padding:0;}
blockquote { margin-left:20px;}
ul { margin: 0; padding: 0; list-style: none; }
ul#css3menu1, #css3menu1 {display: none;}

/* Improve colour contrast of links */
a:link, a:visited { font-weight: bold; text-decoration: underline; color: #06c; }

a:link:after {font-weight: normal; font:10px "Century Gothic"; content: " (www.Poipleshadow.com/" attr(href) ") ";  }
a[href="#"],  a[href="javascript:"] { content: ""; } /* Ignore Javascriptlinks and empty links */

}