/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */


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

/* Un-float the content */
#content,
#content .section {
  float: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !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,
.region-sidebar-first,
.region-sidebar-second,
.region-footer,
.breadcrumb,
div.tabs,
.action-links,
.links,
.book-navigation,
.forum-topic-navigation,
.pager,
.feed-icons,
#kr-header,
#kr-topbar,
#kr-breadcrumbs,
#kr-social,
.print-hide,
#kr-footer,
#botbar,
.kr-related,
#print-btn {
  display: none!important;
}
.print { display: block!important; }
.aside-wrapper.print-left {
	border-left: none;
	clear: left;
	float: left;
	margin: 0;
}
#kr-mainsection .nailart .print-last .block { border-bottom: none; }
#kr-mainsection .nailart .print-left .block { width: 416px; }
/* If you un-comment the "page { overflow-y: hidden; }" ruleset, Firefox clips
   the content after the first page. */
#page-wrapper {
  overflow-y: visible;
}

#print-header { border-bottom: 1px solid #999999; }
#print-header img { background-color: #000; margin: 10px 0; }
#kr-container #kr-mainsection article.nailart { padding: 0; }
#kr-container #kr-mainsection #nail-media { border-left: 1px dotted #CCCCCC; float: right; margin-left: 35px; }
#kr-container #kr-mainsection #aside-nailgallery { float: left; }
#kr-container #kr-mainsection #aside-detail { border-left: none; padding-left: 0; }
#kr-container #kr-mainsection #aside-detail .print-column { border-bottom: none; margin: 0; width: 49%; float: left; }
.end-columns { border-bottom: 1px dotted #CCCCCC; clear: both; margin-bottom: 20px; width: 100%; }
#print-footer { border-top: 1px solid #CCCCCC; margin-top: 10px; }
#print-footer p { margin: 10px auto; text-align: center; }