/* Start of CMSMS style sheet 'RWprint' */
/*
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 */
}

/* This affects every tag */
* {

}

/* 
no need for accessibility on printout. 
Mark all your elements in content you 
dont want to get printed with class="noprint"
*/
.accessibility,
.noprint
 {
display:none !important; 
}

/* Set width constraints  */
div#header #right,
div#content,
div#main
   {margin-right: 0 !important;
     padding-right: 0 !important;}
div#header #center img {width: 30% !important;}

* html div#header,
* html div#content
 { width: 680px !important; }

/* hide the following */

div#menu_horz
{
   display: none !important;
}

img {
float:none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}
/* End of 'RWprint' */

