/**
 * @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 oringinal logo */
.masthead .logo,.masthead .logo img {
	display: none;
}

/* Turn on print logo */
.masthead .print-logo,.masthead .print-logo img {
	display: block;
}

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

#nav {
	visibility: hidden !important;
	display:none !important;
}

/* Hide sidebars and nav elements */
#search-form,
#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,
.sidebar,
.footer.sub,
.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;
}

/* Increase font size */

p.intro {
	font-size: 20px;
}

p, address {
	font-size: 1.125em;
}

ul, ol {
	font-size: 1.125em;
}

/* Change link style */
a {
	color: #333;
	text-decoration: underline;
}

/* Increase paragraph width */
p.intro {
	width: 940px;
}

.grid-8 {
	width: 940px;
}

/* Change h2 style */
h2, .beta {
	font-weight: bold;
	border-bottom: 1px solid #000;
}

/* Change h3 style */
h3, .gamma {
	font-weight: bold;
	font-size: 1.375em;
}

/* Vacancy closing date print styles */
.print-closingDate {
	display: inline-block;
}

/* Remove meta share buttons */
.article_meta .fb-like, .article_meta .twitter-share-button {
	display: none;
}

/* Increase meta time font size */
.article_meta time {
	font-size: 1.375em;
}

/* Remove right border of meta list item */
.article_meta ul li {
	border-right: none;
}
