/* -------------------------------------------------------------- 
  
   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:none; padding:0; margin:0; }

/* Make sure the icons are not cut */
.content a[href^="http:"], .content a[href^="mailto:"], .content a[href^="http:"]:visited, 
.content a[href$=".pdf"], .content a[href$=".doc"], .content a[href$=".xls"], .content a[href$=".rss"], 
.content a[href$=".rdf"], .content a[href^="aim:"] {
  padding:2px 0px 2px 22px;
  margin:-2px 0;
  background-repeat: no-repeat;
  background-position: left center;
}

/* External links */
/*.content a[href^="http:"]          { background-image: url(icons2/external.png); } */
.content a[href^="mailto:"]        { background-image: url(icons2/email.png); }
/* .content a[href^="http:"]:visited  { background-image: url(icons2/visited.png); } */

/* Files */
.content a[href$=".pdf"]   { background-image: url(icons2/pdf.png); }  
.content a[href$=".doc"]   { background-image: url(icons2/doc.png); }  
.content a[href$=".xls"]   { background-image: url(icons2/xls.png); }  
 
/* Misc */
.content a[href$=".rss"], 
.content a[href$=".rdf"]   { background-image: url(icons2/feed.png); }
.content a[href^="aim:"]   { background-image: url(icons2/im.png); }

