﻿/* ------------------------------- *\
            $Contents
           Print Styles
    Created: September 26 2014
    Updated: September 28, 2014

    Author: Jay Valentine
\* ------------------------------- */
/*
    $Contents...................Table of Contents
    $Defaults...................Set some defaults
    $Hide Elements..............Hide unneeded elements
    $Readability................Format for readability
    $Links......................Format Links
    $Images.....................Format Images
*/

/* ------------------------------- *\
            $Defaults 
\* ------------------------------- */
/* Set default width, margin, float, and background.
   This prevents elements from extending beyond the edge of the printed page, and prevents unnecessary background images from printing */

body {
    margin: 0px !important;
    float: none;
    background: #fff url(none);
}

.onlyInPrint
{
    display:block;
}

/* ------------------------------- *\
            $Hide Elements
\* ------------------------------- */
/* Remove any elements not needed in print.
   This would include navigation, ads, sidebars, etc. */

.notInPrint
{
    display: none;
}

/* ------------------------------- *\
            $Readability 
\* ------------------------------- */
/* Set body font face, size, and color. 
   Consider using a Times or serif font for readability. */
body    
{
    font-family: 'Times New Roman', Serif;
}

/* ------------------------------- *\
            $Links 
\* ------------------------------- */
/* Make hyperlinks more usable. 
   Ensure links are underlined, and consider appending
   the URL to the end of the link for usability. */
a:after
{
	content: none;
    
}	


/* ------------------------------- *\
            $Images 
\* ------------------------------- */