/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
 body,
 #page,
 #content {
   font-size: 14pt !important;
   color: #000000 !important;
 }

/* underline all links */
a:link,
a:visited {
  text-decoration: underline !important;
}

/* Don't underline header */
#site-name a:link,
#site-name a:visited {
  text-decoration: none !important;
}

/* CSS2 selector to add visible href after links */
#content a:link:after,
#content a:visited:after {
  content: " (" attr(href) ") ";
  font-size: 0.8em;
  font-weight: normal;
}
body.page-smi-print #content a:link:after,
body.page-smi-print #content a:visited:after,
body.page-content-statistics-rev #content a:link:after,
body.page-content-statistics-rev #content a:visited:after{
  content: none;
}

#content .field-name-field-foto-gallery a:link:after,
#content .field-name-field-foto-gallery a:visited:after {
  content: "";
}
#header img {
  margin: 0 auto;
}
/* Un-float the content */
#content,
#content .section,
#page-wrapper {
  float: none;
  width: 100%;
  margin: 0 !important;
  /*padding: 0 !important;*/
  border: none !important;
}
#content {
  padding: 0 0 0 15mm !important;
}
.two-sidebars #content {
  width: 215mm !important;
  margin-left: 10mm !important;
}
/* Turn off any background colors or images */
body,
#page-wrapper,
#page,
#main-wrapper,
#main,
#content,
#content .section {
  color: #000;
  background-color: transparent !important;
  background-image: none !important;
}

/* Hide sidebars and nav elements */
#skip-to-nav,
#toolbar,
#navigation,
.spbgikit_logo,
.lang_box,
.region-sidebar-first,
.region-sidebar-second,
.region-footer,
.breadcrumb,
div.tabs,
.action-links,
.links,
.book-navigation,
.forum-topic-navigation,
.pager,
.feed-icons,
#block-nice-menus-4,
#conversejs,
#back-top,
div.messages,
div.tabs,
div.dev-query,
div.field-name-field-share,
table td div.ctools-collapsible-container,
div.views-exposed-form,
.do-not-print {
  visibility: hidden;
  display: none;
}

/*#logo-icon {
  display: block;
  position: absolute;
  right: 0 !important;
  top: 0 !important;
} */

table {
  width: 100%;
}
/*div.view-smi table td.views-field-field-foto-preview {*/
  /*width: 10mm !important;*/
  /*word-break: break-all;*/
/*}*/
div.view-smi table td.views-field-field-pub-date {
  width: 30mm !important;
  /*word-wrap: break-word;*/
  word-break: break-word;
}
div.view-smi table td.views-field-field-pub-date em {
  font-size: 0.8em;
}
div.view-smi table td.views-field-field-pub-date img {
  height: 10mm !important;
}

div.view-smi table td.views-field-field-link {
  width: 160mm !important;
  word-break: break-all;
}
/* If you un-comment the "page { overflow-y: hidden; }" ruleset, Firefox clips
   the content after the first page. */
#page-wrapper {
  overflow-y: visible;
}


