/* $Id: print.css,v 1.1 2008/02/15 16:22:09 johnalbin Exp $ */

/* 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-inner {
  float: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

/* Turn off any background colors or images */
body,
#page,
#page-inner,
#main,
#main-inner,
#content,
#content-inner {
  color: #000;
  background-color: transparent !important;
  background-image: none !important;
}

/* This is the official CSS 2.1 way of setting paper margins.
   See http://www.w3.org/TR/CSS21/page.html for the specification. */
@page {
  margin: 0.5in;
}

/* Turn off the fixed page width and page frame */
#page {
  width: auto;
  margin: 0; /* We don't want any additional margins beyond the paper margins. */
  border: 0px none;
  padding: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  box-shadow: 0px 0px 0px #fff;
  -webkit-box-shadow: 0px 0px 0px #fff;
  -moz-box-shadow: 0px 0px 0px #fff;
}

/* Hide sidebars and nav elements */
#skip-to-nav,
#navbar,
#sidebar-left,
#sidebar-right,
#footer,
.breadcrumb,
div.tabs,
.links,
.taxonomy,
.book-navigation,
.forum-topic-navigation,
.pager,
.feed-icons {
  visibility: hidden;
  display: none;
}

#logo {
  text-align: center;
  float: none;
  & img {
    max-width: 6in;
    height: auto;
  }
}

/* Hide even more on waiver pages. */
body.waiver {
  #page {
    font-size: 10px;
    line-height: 1.2;
  }
  #header,
  #content-bottom,
  .instructions {
    visibility: hidden;
    display: none;
  }
}

body.node-type-lesson-card {
  #header,
  #content-bottom {
    visibility: hidden;
    display: none;
  }
}
/*
.faq-answer {
  display: block !important;
  visibility: visible !important;
}
*/
