/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
@media print {
  /* line 14, ../sass/print.scss */
  a:link,
  a:visited {
    /* underline all links */
    text-decoration: underline !important;
  }
  /* line 17, ../sass/print.scss */
  #site-name a:link, #site-name
  a:visited {
    /* Don't underline header */
    text-decoration: none !important;
  }

  /* line 23, ../sass/print.scss */
  #content a[href]:after {
    /* Add visible URL after links. */
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  /* line 30, ../sass/print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    /* Only display useful links. */
    content: "";
  }
  /* line 34, ../sass/print.scss */
  #content abbr[title]:after {
    /* Add visible title after abbreviations. */
    content: " (" attr(title) ")";
  }

  /* line 39, ../sass/print.scss */
  #content {
    /* Un-float the content */
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* line 49, ../sass/print.scss */
  body,
  #page,
  #main,
  #content {
    /* Turn off any background colors or images */
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* line 75, ../sass/print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons,
  .top-stripe,
  #primary-nav,
  #block-views-exp-custom-search-header,
  #block-menu-block-uofm-utility,
  #block-menu-block-women-utility,
  #block-search-form,
  .addthis_toolbox {
    /* Hide sidebars and nav elements */
    visibility: hidden !important;
    display: none !important;
  }

  /* Physician Profile Edits */
  /* line 83, ../sass/print.scss */
  .node-physician-profile .horizontal-tabs-list,
  .node-physician-profile .field-items h3 a:after {
    display: none !important;
  }

  /* line 87, ../sass/print.scss */
  .node-physician-profile {
    margin-top: 20px !important;
  }

  /* line 92, ../sass/print.scss */
  .node-physician-profile a:link,
  .node-physician-profile a:visited {
    text-decoration: none !important;
  }

  /* line 96, ../sass/print.scss */
  .node-physician-profile .horizontal-tabs-pane {
    padding: 0 !important;
    padding-bottom: 25px !important;
  }

  /* line 101, ../sass/print.scss */
  .node-physician-profile .horizontal-tabs {
    border: none !important;
  }

  /* line 105, ../sass/print.scss */
  .node-physician-profile .horizontal-tab-hidden {
    position: relative !important;
    top: auto !important;
  }

  /* line 110, ../sass/print.scss */
  .node-physician-profile legend {
    display: block !important;
    width: 100% !important;
    font-size: 1.5em !important;
    margin-bottom: 20px !important;
    line-height: 1.5;
    font-weight: bold !important;
    color: #333 !important;
    border-bottom: 1px solid #333;
  }

  /* line 121, ../sass/print.scss */
  .node-physician-profile .field-items .field-collection-view {
    width: 50% !important;
    float: left !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
    background: none !important;
  }

  /* line 129, ../sass/print.scss */
  .field-name-field-physician-photo {
    display: block !important;
    width: 125px !important;
    margin-bottom: 20px !important;
  }

  /* End Physician Profile Edits */
}
/* End @media print */
