/**
 * @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 {

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


  /* Turn off any background colors or images. */
  body,
  #page,
  #main,
  #content {
    color: #000;
    width:100% !important;
  }

  #header:after {
	display:none;
	border: none;
}

  /* Hide sidebars and nav elements. */
  .header,
  #header,
  .title-bar,
  .menu-view-div,
  .menu-view-div.active,
  #menu-view,
  .print-button,
  .menu,
  .menu-explore-icon,
  .menu-explore-icon:before,
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .first-footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  #block-block-10,
  .slider-1-div,
  .mobile-logo,
  .gn-menu-container,
  .feed-icons {
    visibility: hidden !important;
    display: none !important;
  }
#content.active,
#content {
	display: block !important;
	position: relative !important;
	top: 0 !important;
	left: 0 !important;
	height: 100% !important; 
	width: 100% !important;
	color: #000 !important;
        background: #fff !important;
	padding-top:45px;
}	
#small-content {
	padding-right:170px;
}
.view-gallery-colorbox img {
	width:180px !important;
	height:180px !important;
	float:left;
}
#block-views-breadcrumbs-block {
	display:none;
}
}
