/*
Website Name: Parco Nazionale Appennino Tosco-Emiliano
Description: A responsive template website
Version: 1.0
Author: Adworkshop
Author URI: http://www.adworkshop.com
*/

/**
 * @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;
	}
	
	/* Add visible URL after links. */
	#content a[href]:after {
	content: " (" attr(href) ")";
	font-weight: normal;
	font-size: 16px;
	}
	
	/* Only display useful links. */
	#content a[href^="javascript:"]:after,
	#content a[href^="#"]:after {
	content: "";
	}
	
	/* Add visible title after abbreviations. */
	#content abbr[title]:after {
	content: " (" attr(title) ")";
	}
	
	/* Un-float the content. */
	.globalWidth,
	.contentPanel,
	.contentRegion,
	.upperRegion,
	.lowerRegion,
	.lowerRegionMain,
	.footerColsWrapper,
	.footerLeftCol,
	.footerRightCol {
	display: block !important;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	}
	
	.footerLeftCol {
	margin: 0 0 2em 0 !important;	
	}
	
	/* Turn off any background colors or images. */
	body,
	.contentPanel,
	.contentRegion,
	.footerContainer,
	.footerColsWrapper,
	.footerLeftCol,
	.footerRightCol,
	.footerTitle,
	.footerFreeform,
	.footerFreeform p {
	color: #000;
	background-color: transparent !important;
	background-image: none !important;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
	}
	
	/* Custom Tweaks */
	.upperRegion {
	margin: 0 0 2em 0 !important;	
	}
	
	/* Hide sidebars and nav elements. */
	#toTop,
	#preloader,
	.addThisWrapper,
	.headerContainer,
	.homepageFeaturedImage,
	.featuredImageContainer,
	.subpageImageGallery,
	.lowerRegionSidebar,
	.searchContainer,
	.socialContainer,
	.directions-form-submit,
	.directions-form-print,
	#skip-link,
	#toolbar,
	#navigation,
	.region-sidebar-first,
	.region-sidebar-second,
	#footer,
	.breadcrumb,
	.tabs,
	.action-links,
	.links,
	.book-navigation,
	.forum-topic-navigation,
	.pager,
	.feed-icons {
	visibility: hidden;
	display: none;
	}
  
}