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


body {
background: none; /* remove the bg image */
background-color:#fff !important; /* on white background */
font-family:arial; /* arial is nice to read ;) */
border:0 !important; /* no borders thanks */
}

p{
   color: #444444 !important; /* we want all text content black */
}

p b, 
p strong{
  color: #666666 !important;
}

h1{  
  color:#604312;
  font-family:"trebuchet ms",arial,sans-serif; 
  line-height:normal;
  margin:13px 0 10px;
}
h2, h3, h4, h5{ 
  border-bottom:1px solid #CBD6C3;
  color:#988562;
  font-family:"trebuchet ms",arial,sans-serif; 
  margin:17px 0 2px;
}

/* 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; 
}

.wrapper{
	background: none;
}

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

/* hide everything else! */
div.header, 
div.breadcrumbs,
div#search,
div.footer,
div.menu,
div.right-col,
div#menu_vert,
div#news,
div.printlink,
div.right49,
div.left49,
#MastImage,
div#sidebar  {
   display: none !important;
}

img {
float:left; /* this makes images couse a pagebreak if it doesnt fit on the page */
margin: 0 10px 5px 0;
}



/* ADDITIONS */

.content img#PrintHeader{
   display:  block !important;
   float: none;
}


/* End of 'Print' */

