/**
 * @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;
  }
	abbr[title] {
    border-bottom: 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. */
  #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;
  }

  /* Hide sidebars and nav elements. */
  #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;
  }
	
	/* custom */
	body #header {
		margin: 0;
		padding: 0;
		max-width: 350px;
		background-color: transparent;
	}
	body #site-owner{ max-width: inherit; margin: 0; }
	
	body #site-slogan2,
	body #block-menu-block-1,
	body #block-search-form,
	body #block-views-contenu-direct-access,
	body #header-top,
	body #block-block-1{ display: none; }
	
	body #site-slogan{
  display: block;
  position: static;
  width: auto;
  color: #000;
  text-align: left;
  padding: 2px 0;
	white-space: nowrap;
	}
	body #main {
		margin: 0;
		max-width: none;
	}
	body #secondary-links,
	body #css-helper,
	body #breadcrumb{ display: none; }
	
	body #block-system-main::after{ content: none; }
	
	body #main-content-wrapper,
	body #sidebar {
		padding: 0;
		float: none;
		width: auto;
	}
	body #sidebar {
		border-top: 1px solid #CCC;
	}
	body #sidebar:before{ content: none; }
	
	.white-text,
	body.rubrique-1 ul.cibles li{ border: 2px solid #ccc; }
	.accroche .accroche-text-wrapper{ vertical-align: top; padding: 0 20px; }
	.accroche .accroche-text-wrapper h2{ margin-top: 0; }
	.accroche .accroche-text-wrapper .white-text{ font-size: 1.3em; }
	
	.cols {
    display: table;
		width: 100%;
	}
	.col {
    display: table-cell !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 10px;
    vertical-align: top;
	}
	dl.collapsible dt + dd {
    max-height: none !important;
	}
	
	img[class^="image-"]{ width: 100% !important; }
}
