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

@page {
  size: 7in 9.25in;
  margin: 27mm 16mm 27mm 16mm;
}

div.new_page {
  page-break-after: always;
}

body {
color: #000 !important; /* we want everything in black */
/*background-color:#fff !important;  on white background */
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; /* arial is nice to read ;) */
border:0 !important; /* no borders thanks */
/*background-image:none;*/
padding: 0;
/*background: #fff url(images/cms/print_bg.jpg) repeat-y top center !important;*/
}


div#body_bg{
	background:none;
	 margin: 0;
	padding: 0;
}

div#pagewrapper {
   margin: 0 ;
   padding: 0;
   background:none;
}

/* 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 {
display:block !important;
width:100% !important;
border:0 !important;
padding:0 !important;
margin:0 !important;
background:none;
}

/* 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,
div#navigation,
div#menu_top,
div#photo_gallery{
   display: none !important;
}

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

div#print_header{
background:url(images/cms/print_header.jpg) no-repeat;
height:149px;
width:775px;
}
div#print_footer{
background:url(images/cms/print_footer.jpg) no-repeat;
height:149px;
width:775px;
clear:both;
padding-bottom:10px;
}

div.hr{
 border: none;  
 padding:0;
   margin:0;
}
/* End of 'Print' */

