/* -----------------------------
Title 		: 	print.css
Author 		: 	Manishankar Mondal
Description :	This css file is used for printing purpose.
Created 	: 	03/25/2008


--------------
CHANGE HISTORY
--------------

-------------------------------------------
Date			Developer			Purpose
-------------------------------------------
03/25/2008		Manishankar			Initial Development.
03/31/2008		Manishankar			task = 6459. Css added for clearing the body to white color and removing body background image.
04/02/08		Manishankar			task = 6459. some css are added for changing the sizes of wrapper and content-wrapper.

----------------------------- */

/* this class is used for making the side bar invisible while printing. */
#sidebar
{
	display: none;
	width: 0px;  /*the content that will not be shown should be of width 0 */
}


/* this class is used for making a content invisible while printing. */
.donot_print
{
	display: none;
	width: 0px; /*the content that will not be shown should be of width 0 */
}

/*  
this class is used for clearing the backgrounds.
!important keyword is used here to over-write previous backgrounds.
*/
.clear_background
{
	float:none !important;	
	border: 0px !important;
	background: none !important;	
}

/*
this css is used for clearing the page body by white color and removing the background image.
*/
body 
{	
	font-family: arial, verdana, helvetica, sans-serif;
	color: #333;	
	background: #fff !important; /* white background. No background image */
	line-height: 1.5em; /*18px */
}


/* while showing only the printable portion the width of content-wrapper should be 495 which is the width of main-content*/
#content-wrapper 
{
	width: 495px !important;
	border: none !important;
	padding: 0px;
}

/* while showing only the printable portion the width of wrapper should be 495 which is the width of main-content*/
#wrapper 
{
	width: 495px !important;
	border: none !important;
	padding: 0px;
}

/* while showing only the printable portion the width of wrapper should be 684 which is the width of main-content*/
.wide #content-wrapper {
	background: none !important;
	border: none !important;
	width: 684px !important;
}

/* while showing only the printable portion the width of wrapper should be 684 which is the width of main-content*/
.wide #wrapper {
	background: none !important;
	border: none !important;
	width: 684px !important;
}

/* thre should be no unwanted border of the main content while printing */
#main-content {
	width: 495px;
	border: 0px !important;
	padding: 18px 0px 0px 0px !important;
}

