/* Start of CMSMS style sheet 'Print' */
/*
Sections that are hidden when printing the page. We only want the content printed.
*/


body, #wrap, #conten-wrap {
background-color:#fff !important; /* on white background */
font-family:arial; /* arial is nice to read ;) */
border:0 !important; /* no borders thanks */
}

/* 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#main,
div#page-content,
div#wrap,
div#conten-box,
div#content-wrap,
#footerStatement
{
display:block !important;
width:100% !important;
height:auto !important;
border:0 !important;
padding:1em !important;
margin:0px; !important;
}

h1#topLogo {
position:relative !important; 
margin-bottom:30px !important;
}

div#footerStatement {
float:none !important;

}

/* 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,
#secondaryMenu  {
   display: none !important;
}

img {
float:none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}

h1 {font-size:16px; !important;}
h2 {font-size:14px; !important;}
h3 {font-size:13px; !important;}
h4 {font-size:12px; !important;}
p, li { font-size:11px; !important;}

.hidden {position:none; width:auto;  height:auto;  overflow:auto;}
/* End of 'Print' */

