/* CSS Pring Layer - rules for print media */

/* The Print layer contains any style rules required to prepare the page for printing or
 * make it 'printer friendly'.  These rules typically consist of hiding page elements which 
 * are irrelevant in a print environment.  As such Print layer rules may apply to any 
 * elements on a page, regardless of their previous formatting.
 * 
 * While print rules may change font size and color if this makes sense, they are more 
 * typically used to hide:
 *  - Navigation or menu systems
 *  - Ads or material irrelevant to the main article
 *  - Background images and color
 *  - Forms
 *  - Streaming media
 *  - Animation
*/

a {
  display : none;
}
.embox {
  display : none;
}