/* Styles for the printer-friendly version of the page */
/* Remove background colors and images, use black ink */
* {
 background: transparent !important;
 color: black !important;
}
body {
 width: auto !important;
 font-size:12pt;
}
/* Size to fit width of the printed page */
#wrapper {
 width: 98%;
 margin: 1em auto;
 max-width: none;
 min-width: none;
}
/* Don't display the navigation bar */
/* You can use the same idea to hide anything else 
 that you don't want on the printed page */
nav {
 display: none;
}

article nav {
 display: none;
}

footer {
 display: none;
}

a[href] {
 display: none;
}

/*======== Styling for the sidebar section (aside) */
aside {
 display: none;
}

article {
 padding: 0; 
 /* Left margin should match neighboring column full width */
 margin-left: 0px;
 border-left: none;
}


/* Make links black and underlined */
a, a:link, a:visited {
 color: black;
 text-decoration: underline;
}
/* Show URL afer link (only good for external links) */
/* a[href]:after { */
/*  content: " (" attr(href) ")"; */
}


/* Limit width of images to their containing elements */
img {
 max-width: 100% !important;
} 