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

/* This affects every tag */
* {
border:0 !important; /* again no borders on printouts */
}

/* 
remove all width constraints from content area
*/
div#content
{
display:block !important;
width:170mm !important;
border:0 !important;
padding:1em !important;
margin:0 auto;
}

/* hide everything else! */
#header1, #header2, #header3, #header4, #header5, #header6, #header7, #header8, #header9, #header10, #header11,
#menu, #print, #first, .second
{
   display: none !important;
}

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