/* --------------------------------------------------------------

   link-icons.css
   * Icons for links based on protocol or file type.

   See the Readme file in this folder for additional instructions.

-------------------------------------------------------------- */

/* Use this class if a link gets an icon when it shouldn't. */
body a.noicon {
  background:transparent none !important;
  padding:0 !important;
  margin:0 !important;
}

/* Make sure the icons are not cut */
a.http, a.mailto, a.http:visited,
a.pdf, a.doc, a.xls, a.rss,
a.rdf, a.aim {
  padding:2px 22px 2px 0;
  margin:-2px 0;
  background-repeat: no-repeat;
  background-position: right center;
}

/* External links */
a.http { background-image: url(icons/external.png); }
a.mailto { background-image: url(icons/email.png); }
a.http:visited  { background-image: url(icons/visited.png); }

/* Files */
a.pdf   { background-image: url(icons/pdf.png); }
a.doc   { background-image: url(icons/doc.png); }
a.xls   { background-image: url(icons/xls.png); }

/* Misc */
a.rss,
a.rdf { background-image: url(icons/feed.png); }
a.aim { background-image: url(icons/im.png); }
