/* Styles used when printing a news item */

/* Hide the unnecessary parts of the page */
#news_page_header,
  #news_page_title,
  #news_page_sub_title,
  #news_page_buttons,
  #news_item_footer,
  #news_page_footer,
  #news_instructions,
  #prevmenu,
  #quote_left_image,
  #quote_right_image,
  #series_key_note {
	display: none;
}

/* Set the colours and font */
.body {
	background: white;
	color: black;
	font-family: Verdana, sans-serif;
	font-size: 12pt;
}

/* Make links bold but not underlined */
a, a.bodylight {
	background: white;
	color: black;
	text-decoration: none;
	font-weight: bold;
}

/* After each link, add the URL in brackets */
a[href^="http://"]:after {
	content: " (" attr(href) ")";
}
a[href^="www."]:after {
	content: " (" attr(href) ")";
}

/* Add a border around each news item and a little padding */
.news_item_wrapper {
	border: 1px solid black;
	padding: 2px;
}

/* Add a dotted border around the quote and a little padding */
#quote_box {
	border: 1px dotted black;
	padding: 2px;
}

/* Add a border around the series key */
#series_key {
	border: 1px solid black;
}

/* Various interactive elements on the news menu page should not be printed */
#toggle_heading {
	display: none;
}
.toggle_row, .toggle_placeholder {
	display: none;
}
.checkbox {
	display: none;
}
