/* Start of CMSMS style sheet 'Print' */
/*
Sections that are hidden when printing the page. We only want the content printed.
*/


body {
margin: auto 100px;
font-family: Verdana, Arial, sans-serif;
font-size: 76%;
}



/* BOOKING FORM */

.rule { /* adds underline and rule */
display: block;
border-bottom: 1px #999 solid;
width:420px;
}

/* Hide link styles */

a, a:link, a:visited, a:hover, a:active {
color: #000;
text-decoration: none;
}

/* 
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
*/
.maincontent, .maincontent p, .rule
 {
display:block !important;
width:98% !important;
}

/* hide everything else! */
  {
   display: none !important;
}

img {
float:none; /* this makes images cause a pagebreak if it doesnt fit on the page */
}
/* End of 'Print' */

