/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */


/* underline all links */
a:link,
a:visited {
  text-decoration: underline !important;
}

/* Don't underline header */
#site-name a:link,
#site-name a:visited {
  text-decoration: none !important;
}

/* CSS2 selector to add visible href after links */
#content a:link:after,
#content a:visited:after {
  content: " (" attr(href) ") ";
  font-size: 0.8em;
  font-weight: normal;
}

/* Un-float the content */
#content,
#content .section {
  float: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

/* Turn off any background colors or images */
body,
#page-wrapper,
#page,
#main-wrapper,
#main,
#content,
#content .section {
  color: #000;
  background-color: transparent !important;
  background-image: none !important;
}

/* Hide sidebars and nav elements */
#skip-to-nav,
#toolbar,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
.region-footer,
.breadcrumb,
div.tabs,
.action-links,
.links,
.book-navigation,
.forum-topic-navigation,
.pager,
.feed-icons {
  visibility: hidden;
  display: none;
}

/* If you un-comment the "page { overflow-y: hidden; }" ruleset, Firefox clips
   the content after the first page. */
#page-wrapper {
  overflow-y: visible;
}


/* ################### */
/* custom print styles */
/* ################### */
/* body #page #main-wrapper #main #content .section .region-content #block-system-main .content .view-calendar-2 */
@page {
  margin:.25in;
}
body, #page, #main-wrapper, #main, #content, .section, .region-content, #block-system-main, .content, .view-calendar-2 {
  margin:0;
  padding:0;
}
body #page #main-wrapper #main #content {
  margin:auto;
  width:99%;
}
body #page #main-wrapper #main #content .section .region-content {
  margin:auto;
  width:100%;
}
div.date-nav-wrapper {
  margin:0 !important;
}
#main, .region-content {
  border:0;
}
/* undo CSS2 selector to add visible href after links */
.page-calendar #content a:link:after,
.page-calendar #content a:visited:after {
  content:none;
}
/* undo underline links */
a:link,
a:visited {
  text-decoration: none !important;
}
td.today {
  border-width:0 !important;
  border-style:transparent !important;
  background-color:#ffffff !important;
}
.region-extra-top, #header, .region-bottom, .page-calendar h1#page-title, 
#block-views-misc-block-event-key {
  display: none;
  visibility: hidden;
}
/* ################### */
/* ################### */