/*!
 * print.css v1.0.0
 * http://printstylesheet.com/
 *
 * Copyright (c) 2011 David Bushell
 * Dual licensed under the BSD or MIT licenses: http://printstylesheet.com/license.txt
 
 * Author: David Bushell
 * http://dbushell.com/
 */

/* use a media query to limit the CSS to only print devices, like a printer */
@media only print {
	/* hide every element within the body */
	/*body * { display: none !important; }*/
	/* add a friendy reminder not to waste paper after the body */
	/*body:after { content: "Don't waste paper!"; }*/

	#global,
	#header, #logo,
	#content, #content .corps, #content .corps .tab-content, #content .corps .tab-content h2 {
		position: static !important;
		display: block !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: auto !important;
		height: auto !important;
	}

	.corps .tab-content {
		page-break-inside: avoid;
	}

	#logo .titre, #search-engine, #menu,
	#content .breadcrumb, 
	#photo-page,
	#footer,
	#tabs .tabs-ul,
	div.image-bandeau-page-retour {
		display: none !important;
	}
}