/**************************************************************************************************
** This work is licensed under the Creative Commons Attribution License.                         **
** To view a copy of this license, visit http://creativecommons.org/licenses/by/2.0/             **
** or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. **
**                                                                                               **
** Essentially this means you can do whatever you want with the code as long as you credit       **
** Grayden MacLennan (grayden.maclennan@case.edu) as the original author.                        **
**                                                                                               **
** This document was last modified on May 9, 2005                                                **
**************************************************************************************************/



/* If used in rel="blah" */

a[rel~=mail]:after {
	content: url(../images/mail-icon.gif);
}

a[rel~=external]:after {
	content: url(../images/externalgray-icon.gif);
}

a[rel~=pdf]:after {
	content: url(../images/pdf-icon.gif);
}

a[rel~=word]:after {
	content: url(../images/word-icon.gif);
}


/* If used in class="blah" */

a.mail:after {
	content: url(../images/mail-icon.gif);
}

a.external:after {
	content: url(../images/externalgray-icon.gif);
}

a.pdf:after {
	content: url(../images/pdf-icon.gif);
}

a.word:after {
	content: url(../images/word-icon.gif);
}
