/* Start of CMSMS style sheet 'Public Trustee Print Styles' */
/* General *//*
Sections that are hidden when printing the page. We only want the content printed.
*/


body {
color: #000 !important; /* we want everything in black */
background-color:#fff !important; /* on white background */
/*font-family:arial; /* arial is nice to read ;) */
border:0 !important; /* no borders thanks */
}

div.contentarea h1, 
div.contentarea h2, 
div.contentarea h3, 
div.contentarea h4, 
div.contentarea h5, 
div.contentarea p, 
div.contentarea ul, 
div.contentarea ul li,
div.contentarea table td, 
div.contentarea a, 
div.contentarea span {
	color:#000;
	font-size:medium;
	margin-top:0.5em;
	margin-bottom:1em;
	line-height:120%;
}
div.contentarea h2 {
	font-size:x-large;
}

/* This affects every tag */
* {
border:0 !important; /* again no borders on printouts */
background-image:none;
}

/* 
no need for accessibility on printout. 
Mark all your elements in content you 
dont want to get printed with class="noprint"
*/
.accessibile,
.noprint
 {
display:none !important; 
}

/* 
remove all width constraints from content area
*/
div.contentarea {
display:block !important;
width:100% !important;
border:0 !important;
padding:1em !important;
}

/* hide everything else! */
div.header,
div.headerminheightspacer,
div.headermenu,
div.topmenu,
div.topmenuintro,
div.introcontainer,
div.leftcolumn,
div.minheightspacer,
div.sidemenu,
div.submenu,
div.rightcolumn,
div.rightcolumnintro,
div.footer,
div.footermenu,
div.picintroleft,
div.picintroright,
div.saclogo  {
   display: none !important;
}

img {
float:none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}
/* End of 'Public Trustee Print Styles' */

