/*
 * jx_print.css
 *
 * (C) COPYRIGHT Journyx, Inc 1997 - 2005
 *  All Rights Reserved
 *  Licensed Materials - Property of Journyx, Inc.
 *
 * This stylesheet is applied when a Timesheet table is printed out.
 * 
 * The purpose is to make sure something reasonable happens when a
 * page is printed.  Generally we just strip out anything that's going
 * to clutter up the printed page without adding anything valuable to
 * the layout or information content.
 *
 *
 */

/* Assign this to any element you would like not to print. */
.noPrint
{ display: none; }

/* Don't show the very top of the page with the logo and logout link */
#idHeader, #idHeaderButtons {
  display: none;
}

/* Don't show the toolbar or any of its components */
.clsToolbarToggleOpen, .clsToolbarToggleClose, #idToolbarContainer, #idToolbarTable {
  display: none;
}

/* Don't show Help link */
.Help { 
  display: none;
}

/* Get rid of main page borders */
#idMainPageContainerTD, #idPrimaryContainer, #idStatusErrorHelp, #idPrimaryContent { 
  border-width: 0px;
}

/* Get rid of the bevels (rounded corners) */
.clsContainerBevel { 
 display: none;
}

/* Get rid of any left-padding which makes space for Toolbar */
#idPrimaryContainer { 
 padding: 0px;
 margin: 0px;
 width: 99%;
}

/* Get rid of subtitle, leaving only the title */
DIV.StatusErrorHelpTable TR.ShortDescription
{ display: none; }

/* Don't print any Navigation tabs
   they tend to make MSIE print cut off the right side of the page */
#idPrimaryTabs, #idTabSubNav { 
 display: none;
}

/* Clean up search results */
TABLE.clsSearchResultsTable TFOOT,
TABLE.clsSearchResultsTable .clsSearchResultsHeaderRight,
.clsStdScreenButton, .clsButton
{ display: none; }

/* Cleanup for the leave request calendar */
.Bcalendarheader .todaydisplay,
.Bcalendarheader .todayactive,
.Bcalendarheader IMG
{ display: none; }
