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

/* make headers a more reasonable size */

h1 {
  font-size: 1.6em;
  color: #000 !important;
}

h2 {
  font-size: 1.4em;
  color: #000 !important;
}

h3 {
  color: #000 !important;
}

/* Un-float the content */
#content,
#content .section,
#header div ,
#footer div,
#footer #bottom_footer_right
#bottom_footer_right div,
#site-title,
#footer #copyright p,
#bottom-gradient,
#page-background,
#pattern-overlay,
#page-wrapper,
.panel-3col div, {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

div {float:none !important;clear:both !important;display: inline !important;}

.panel-3col div {
  clear:both;
}

/* 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,
#content-footer,
#logos_footer,
#site_details,
#key_links,
#block-search-form,
#inversed_logos,
#content-footer-wrapper,
body.front .panel-col,
.pane-menu-block-1,
.messages,
.pane-page-breadcrumb,
.region-header,
#secondary-menu,
.element-invisible,
#block-apachesolr-panels-search-form {
  visibility: hidden !important;
  display: none !important;
}

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


/* ADDITIONAL LAYOUT */
#site-title
#site-title a,
#site-title a:visited {
  color:#000;
}

#rightside,
.panel-col {
  clear:left !important;
}

.inside,
#main {
  padding-left:0px !important;
  padding-right:0px !important;
}

/* front page make the news wide */
body.front .panel-col-first {
  width:100% !important;
}

body.front .panel-col-last {
  width:50% !important;
}

/* other pages make the middle col wide */
.panel-col {
  width:100%;
}

/* make the secondary cols nicer */
.standard-block {
  background-color:#fff;
  border:2px #333;
}

.panel-col-first, .panel-col-last{
  width:50%;
}

.no-sidebars>.panel-col-last {
  display:none !important;
}


#bottom_footer_right {padding-top:2em !important;}

h3.pane-title {padding-top:2em !important;}

.download-pane-hide {
  display: none !important;
}
