/* Start of CMSMS style sheet 'MU-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 */
}

/* 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: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:none;   this makes images couse a pagebreak if it doesnt fit on the page 
}
*/

/* calendar */

.calendar tr td a
{
   background-color: white !important; 
   color: black !important;
   text-decoration: none; 
}

.calendar-prev-month a
{
   display: none !important;

}

.calendar-next-month a
{
   display: none !important;
}

#big{
  margin: 0px !important;
  border-collapse: collapse !important;
  border: 1px solid black !important;
}

/* nice squares for the #big table */
#big th
{
  border: 1px solid black !important;
  padding: 3px !important;
  width: 75px !important;
}

#big td {
  border: 1px solid black !important;
  padding: 3px !important;
  height: 75px !important;
  width: 75px !important;
}

/* format summaries nicely in #big */
#big ul
{
  padding: 0px !important;
  padding-left: 5px !important;
}

#big li
{
  list-style-type: none !important;
  padding: 0px !important;
  margin: 0px !important;
}

/* news */

#NewsPostDetailSummary {
   line-height: 150%;
   margin-bottom: 2.5em;
   }

/* End of 'MU-Print' */

