/* Start of CMSMS style sheet 'Print' */
/*
Sections that are hidden when printing the page. We only want the content printed.
*/


body {
width: 100%;
color: #000 !important; /* we want everything in black */
background-color:#fff !important; /* on white background */
border:0 !important; /* no borders thanks */
background-image: none;
margin-left: 0px !important;
}

/* This affects every tag */
* {
border:0 !important; /* again no borders on printouts */
}

/* 
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; 
}

/* 
remove all width constraints from content area
*/
div#content,
div#maincontent 
 {
display:block !important;
width:85% !important;
border:0 !important;
padding:0em !important;
}

div#menu_horiz {
   display: none !important;
}

img {
float:none; /* this makes images cause a pagebreak if it doesnt fit on the page */
}

#sidebar img {
display: none !important;
}
/* End of 'Print' */

