@charset "utf-8";
/* CSS Document */
/* References: 
https://www.sitepoint.com/css-printer-friendly-pages/
https://developer.mozilla.org/en-US/docs/Web/Guide/Printing
*/
*, :after, :before {
  color: #000 !important;
  text-shadow: none !important;
  background: 0 0 !important;
  box-shadow: none !important
}
/* Code */
body {
  color: #000;
  background: #fff;
  font: 13pt Georgia, "Times New Roman", Times, serif;
  line-height: 1.3;
}
body, article {
  width: 100%;
  margin: 0;
  padding: 0;
}
/* Displaying link color and link behaviour */
a:link, a:visited, a {
  background: transparent;
  color: #520;
  font-weight: bold;
  text-decoration: underline;
}
a {
  page-break-inside: avoid
}
a[href^=http]:after {
  content: " < "attr(href) "> ";
}
a[href^="#"]:after {
  content: "";
}
a:not(:local-link):after {
  content: " < "attr(href) "> ";
}
/* Typography */
h1 {
  font-size: 24pt;
}
h2, h3, h4 {
  font-size: 14pt;
  margin-top: 25px;
}
h2, h3 {
  page-break-after: avoid;
}
h2, h3, h4 {
  break-after: avoid-page;
}
/* Tables */
table {
  page: rotated
}
/* Images */
img {
  page-break-inside: avoid;
}
/* logo */
.amsprintlogo {
  display: block !important;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #565d62;
}
/* Logo */
/* Hide these things */
.logoproper {
  width: 3.0in;
}
img[src="/images/content/footer-line.png"] {
  display: none;
}
a[href]:after {
  display: none;
}
nav, aside {
  display: none;
}
video, audio, object, embed {
  display: none;
}
#breadcrumb {
  display: none;
}
.bannerbox {
  display: none !important
}
#mySidenav {
  display: none;
}
#shareThis {
  display: none;
}
.blue-nav {
  display: none;
}
#quickLinks {
  display: none;
}
#ams_news_calendar {
  display: none;
}
.well + #ams_news_calendar {
  display: none;
}
footer {
  display: none;
}
#pagefooter {
  display: none;
}
/* Page Margins */
@page {
  size: 8.5in 11in; /* width height */
}
@page {
  margin: 2.54cm
} /* All margins set to 2.54cm = 1 inch */
@page {
  size: portrait
}
@page rotated {
  size: landscape
}
