/**
 * @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-link,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.breadcrumb,
div.tabs,
.links,
.taxonomy,
.book-navigation,
.forum-topic-navigation,
.pager,
.feed-icons {
  visibility: hidden;
  display: none;
}

/* If you un-comment the "page { overflow-y: hidden; }" ruleset, Firefox clips
   the content after the first page. */
#page-wrapper {
  overflow-y: visible;
}



/*Webform*/
body.webform-submissions #block-panels_mini-banner_slideshowtop { display:none; }
body.webform-submissions .webform-submission-navigation { display:none; }
body.webform-submissions #main > #content { width:100%; background:red; }
body.webform-submissions #main > #content .section { padding:0 20px !important; width:auto; }
body.webform-submissions #main > #content .section,
body.webform-submissions #main > #content fieldset,
body.webform-submissions #main > #content legend { font-size:17px !important; font-family:Verdana, Tahoma, "DejaVu Sans", sans-serif; line-height:20px !important; }
body.webform-submissions .region-sidebar-second { display:none; }
