/* Start of CMSMS style sheet 'Print' */
/*
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 */
   border: 0 !important;
}

/* This affects every tag */
* {
   border:0 !important; /* again no borders on printouts */
   font-family:"times new roman",times,serif;
}

/* 
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#innerContainer {
   position: absolute;
   top: 50px;
   left: -30px;
   display:block !important;
   width:100% !important;
   border:0 !important;
   padding:1em !important;
}

/* hide everything else! */
div#header, div#subNavigation, div#bgImage  {
   display: none !important;
}

div#textContainer h4 {
   font-family: "times new roman",times,serif;
   font-size: 18px !important;
   color: #000 !important;
}

div#textContainer a {
   font-family: "times new roman",times,serif;
   color: #000 !important;
}

div#middleCol, div#rightCol, div#bottomArea {
   font-family: "times new roman",times,serif;
   font-size: 16px !importent;
}

div#rightCol {
   margin: 0px 0px 0px -20px;
}

img {
   float:none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}
/* End of 'Print' */

