/*

Places a link along the top right of an article, tutorial, or other content page.
Content container or parent must have position:relative (almost all do inside firstColumn, secondColumn, and thirdColumn)
The page h1 must have short content (32 characters)

Sample HTML:
<div id="printerFriendlyLink"><a href="#">Printer Friendly Version</a></div>

*/
#printerFriendlyLink {
  position: absolute;
  /* should be placed at the bottom of page content */
  top: 24px;
  /* margin-top of h1 */
  right: 10px;
  /* padding-right of col-wrapper */
  height: 24px;
  line-height: 24px;
}
#printerFriendlyLink a {
  padding-left: 18px;
  background: url("//cdn.techopedia.com/resource/images/pdf.gif") no-repeat left;
}
