/* Comment syntax for NaturalDocs 1.4 */
/*
File: web_defaultprint.css

Purpose:
Provides default printing styles for the SSB/Minerva pages.

Description:
This stylesheet takes care of adjusting any presentation requirements for
printing purposes for specified elements.

PVCS: General Attributes
PVCS Archive Attributes
(start code)
 $Archive:   P:\VM\ISR_MAIN\archives\COMMON_LIBRARIES\Client programs and libraries\web_defaultprint.css-arc  $
$Workfile:   web_defaultprint.css  $
$Revision:   1.2  $
  $Author:   tmayra  $
    $Date:   Nov 29 2010 09:05:52  $
 $Modtime:   Nov 26 2010 16:02:08  $
(end)

PVCS: Change Log
Description of revision changes
(start code)
$Log:   P:\VM\ISR_MAIN\archives\COMMON_LIBRARIES\Client programs and libraries\web_defaultprint.css-arc  $

   Rev 1.2   Nov 29 2010 09:05:52   tmayra
Fixed font size issues when printing.

   Rev 1.1   Oct 20 2010 10:49:22   tmayra
McGill Version

   Rev 1.1   Jun 01 2010 14:21:58   tmayra
Added a noprint class style that will set the display to none.
(end)
*/
/*
  AUDIT TRAIL: 8.2                                             LVH 03/05/2009
  1. Defect 1-4V8J50
     Change the H1 header to a no-display to prevent erroneous printing.

  AUDIT TRAIL: 7.3                                             LVH 02/03/2006
  1. Defect LN71-008-1740
     The SEARCH box and Site Map, Menu, Help, and Exit should not be displayed
     when a page is printed.
  2. Defect 1-FHOGD                                            MEC 04/18/2006
     Add background-image: none to the BODY element, so that the background
     image will not be printed and overlay text on multiple print pages.
  AUDIT TRAIL: 6.0
  1. Hide HR tag for printing					Rk 3/26/2003
  2. Reduce font sizes for datadisplay tables to fit in page. This will be useful
     for pages which have lot of content.

  AUDIT TRAIL: 5.3
  1. Initial release.                        rk 6/14/2002

	This style sheet will be used for print media.
	Use this style sheet to define print tags.
        This style sheet can also be used to override styles from application pages.

  AUDIT TRAIL END

  FILE NAME..: web_defaultprint.css
  RELEASE....: 8.2
  PRODUCT....: WTLWEB
  COPYRIGHT..: Copyright (C) SunGard 2002-2009. All rights reserved.
*/


@media print
{
  /* style sheet for print goes here */

BODY {
font-family: Arial, verdana, helvetica, sans-serif;
font-style: normal;
text-align: left;
/* BROWSER CONSIDERATION - Override browser settings for BODY margin */
margin-top: 0%;
margin-left: 0%;
background-image: none;
}

DIV.backlinkdiv {
display:none
}

DIV.pageheaderdiv2 {
display: none
}

DIV.headerlinksdiv {
display: none
}
/* Defect LN71-008-1740 */
DIV.headerlinksdiv2 {
display: none
}

DIV.poweredbydiv {
display: none
}

DIV.footerlinksdiv{
display: none
}

HR {
color: #FFFFFF;
text-align: left;
vertical-align: top;
margin-top: 0px;
}

/* Defect 1-4V8J50 */
H1 {
display: none
}

/* Defect LN71-008-1740 */
SPAN.pageheaderlinks {
display: none
}

/****************** Start of McGill CSS style overrides/additions ************************/
/* Commented out
Table.datadisplaytable{
font-size :80%
}


TABLE TD.dddefault {
font-size:75%;
}

TABLE TH.dddefault {
font-size: 80%;
}

Table TH.ddlabel
{
font-size: 80%;
}
*/
/****************** Start of McGill CSS style overrides/additions ************************/
.noprint {
   display: none;
}
/******************* End of McGill CSS style overrides/additions *************************/
}
