/* -------------------------------------------------------------- 
  
   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 */
#corpo .link a[href^="http:"],#corpo .link a[href^="mailto:"], 
#corpo a[href$=".pdf"], #corpo a[href$=".doc"], #corpo a[href$=".xls"], #corpo a[href$=".rss"], 
#corpo a[href$=".rdf"], #corpo a[href^="aim:"] {
  padding:2px 22px 2px 0;
  margin:-2px 0;
  background-repeat: no-repeat;
  background-position: right center;
}

/* External links */
#corpo .link a[href^="http:"]          { background-image: url(icons/external.png); } 
#corpo .link a[href^="www."]          { background-image: url(icons/external.png); } 
#corpo .link a[href^="mailto:"]        { background-image: url(icons/email.png); }

/* Files */
#corpo a[href$=".pdf"]   { background-image: url(icons/pdf.png); }  
#corpo a[href$=".doc"]   { background-image: url(icons/doc.png); }  
#corpo a[href$=".xls"]   { background-image: url(icons/xls.png); }  
 
/* Misc */
#corpo a[href$=".rss"], 
#corpo a[href$=".rdf"]   { background-image: url(icons/feed.png); }
#corpo a[href^="aim:"]   { background-image: url(icons/im.png); }
