/* 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 ;) */ /* no borders thanks */
}

/* This affects every tag */


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

#breadcrumb {
    display: none;
}
#menu_horiz {
    display: none;
}
#banner {
    display: none;
}
#leftColumn {
    display: none;
}
#rightColumn {
   display: none;
}
#footer {
    display: none;
}
#valid {
 display: none;
}

#logo {
   background-image: url(../images/print-logo.jpg;
   background-repeat: no-repeat;
   background-position: 0 0;
 }
#logo h1 a {
    display: none;
}

/* Table formatting print */

div#content table {
    border: solid 1px #000000;
}
div#content th {
   background-color:#666666;
   border:1px solid #333333;
   color:#FFFFFF;
   font-weight:normal;
   padding-bottom:4px;
   text-align:center;
}

div#content td {
border: solid 1px #000000;
}
div#content .odd {
   background-color: #eaebf8;
}


/* 
remove all width constraints from content area
*/
div#content,
div#main {
display:block !important;
width:95% !important;
border:0 !important;
padding:1em !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  {
   display: none !important;
}

img {
float:right; /* this makes images couse a pagebreak if it doesnt fit on the page */
margin-left: 20px;
}
/* End of 'Print' */

