/* 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 */
font-family:arial; /* arial is nice to read ;) */
border:0 !important; /* no borders thanks */
top:0px;
}

/* 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#contents,
div#main {
display:block !important;
width:100% !important;
border:0 !important;
padding:1em !important;
overflow:visible;
}

/* hide everything else! */
div#header,
div#header h1 a,
div.breadcrumbs,
div#search,
div#footer,
div#menu_vert,
div#news,
div.right49,
div.left49,
div#sidebar  {
   display: none !important;
}

img {
float:none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}

html, body, p, th, td, li, dd, dt {
  font: 9pt Verdana, Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family:Verdana, Arial, Helvetica, sans-serif;
}
p  {line-height:180%}
h1 { font-size: 1.7em; color: #48723a;  font-family:Trebuchet Ms, Arial, Helvetica, sans-serif; }
h2 { font-size: 1.5em; color: #424242; font-family:Trebuchet Ms, Arial, Helvetica, sans-serif; 	border-bottom: 1px dotted #a8a8a8;}
h3 { font-size: 1.2em; color: #5b8a4b; }
h4 { font-size: 1.0em; color: #5b8a4b;}
h5 { font-size: 0.9em; }
h6 { font-size: 0.8em; }
.footer {font-size: 8pt; font-family: tahoma, verdana; line-height:110%}
.footer a {font-size: 8pt; color: #5b8a4b}



 
/* End of 'Print' */

