/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */

/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
	body *{
		visibility:visible;
	}
  /* Underline all links. */
  a:link,
  a:visited {
    text-decoration: underline !important;
  }

  /* Don't underline header. */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }
  
  /* Hide side nav */
  .nav-list {
	  display:none;
  }
  

  /* Un-float the content. */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }
  .view-whats-happening-events .owl-item{
	  width:49%;
  }
  .view-what-s-happening-full .col-md-6{
	  width:100% !important;
  }
  .view-what-s-happening-full .owl-item{
	  clear:both;
  }
  h1,h2,h3,h4,h5{
	  padding:10px 0px 10px 0px;
	  font-weight:bold;
	  page-break-after: avoid;
  }
  ul{
	  padding-left:40px;
  }

  /* Hide sidebars and nav elements. */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .md-slide-wrap,
  #topHead,
  #showSwitcher,
  #switcher,
  #whats-happening + .col-md-6,
  #fast-790,
  #fast-480,
  .print_html,
  .feed-icons {
    visibility: hidden !important;
    display: none !important;
  }
}
