/* 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 */
margin:0 !important;
padding:0 !important;
}
a {
text-decoration: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,
#navcontainer
 {
display:none !important; 
}

/* 
remove all width constraints from content area
*/
div#content,
div#main {
display:block !important;
width:100% !important;
border:0 !important;
}

/* hide everything else! */
div#search,
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 */
}

#container { 
	width: 160mm !important;
	margin: 5mm !important;
	text-align: left;
	padding: 0 !important;
}

#pageHeader {
	display:block;
	width:60mm !important;
	float:right !important;
	padding:0;

}
#pageHeader img {
	display:block !important;
	width:60mm !important;
}
#printHeader {
	display:none;

}

#footer {
	border-top:thin solid black !important;
	width:100%;
	font-size: 75%;
	padding-top:1mm !important;
}
.breadcrumbcontainer {
	border-bottom:thin solid black !important;
	width:100%;
	font-size: 75%;
	padding-bottom:1mm !important;
	clear:both;
}
#content, #contentContainer {
	width: 160mm !important;
	padding:0 !important;
	margin:0 !important;
}
/* End of 'Print' */

