﻿/*
'******************************************************************************
'
'	Name:			Standard Shared Stylesheet
'
'	Path:			/cmgshared/stylesheets/CmgInternetPrt.css
'
'	Description:	IE and Netscape print overrides for CMG Internet pages.
'
'	Revision History:
'
'	Date	Revised By	SIR # / Description
'	------------------------------------------------------------------------
'	02/09/2010	DRC		Eliminated all the previous redundant styles, now includes only override
'						styles that are actually needed.
'******************************************************************************
*/

/*
02/09/2010 DRC:
Forcing the overall width to be smaller, basically pulled from the older css.
*/
.wrapperTbl
{
	background-attachment: scroll;
	background-repeat: repeat;
	background-color: white;
	width: 770px;
}

/*
02/09/2010 DRC:
Styles for selecting showing and hiding parts of the page, basically pulled from the older css.
Note that the 'printonly' class has been retained for backwards compatibility only - some browsers
such as Firefox have trouble with the 'inline' setting, but it seems to work fine with IE.
*/
.screenonly
{
	display: none;
}
.printonly
{
	display: inline;
}

/*
02/09/2010 DRC:
The left and right nav panels are currently being rendered with backgrounds, which do not print.
This effectively kills the whitespace caused when background images do not print.
*/
.leftnavPanels .leftnavTop
{
	display: none;
}
.leftnavPanels .leftnavBottom
{
	background-image: none;
	height: 8px;
}
.rightnavPanels .rightnavTop
{
	display: none;
}
.rightnavPanels .rightnavBottom
{
	background-image: none;
	height: 8px;
}

/*
03/23/2010 DRC:
Make sure toolbar icons do not show on printout.
*/
.navbar .toolbar
{
	display: none;
}
