/* Add File Type Icons to links */


 
/* External links */
a[href^="http://"], a[href^="https://"] {
background:transparent url(../images/file-type-icons/external_link.png) top right no-repeat;
display:inline-block;
padding-right:15px;
line-height:15px;
}
/* PDF document links */
a[href$='.pdf'], a[href$='.PDF'] {
background:transparent url(../images/file-type-icons/pdf.png) center right no-repeat;
display:inline-block;
padding-right:30px;
line-height:25px;
}
/* Excel Documents links */
a[href$='.xls'], a[href$='.csv'], a[href$='.xlw'], a[href$='.xlt'] {
background:transparent url(../images/file-type-icons/excel.gif) center right no-repeat;
display:inline-block;
padding-right:30px;
line-height:15px;
}
/* Word Document Links */
a[href$='.doc'], a[href$='.rtf'], a[href$='.wps'], a[href$='.txt'] {
background:transparent url(../images/file-type-icons/word.gif) center right no-repeat;
display:inline-block;
padding-right:30px;
line-height:15px;
}
/* mailto: links */
a[href^="mailto:"] {
background:transparent url(../images/file-type-icons/mailto.gif) center right no-repeat;
display:inline-block;
padding-right:30px;
line-height:15px;
}
/* Video links */ 
a[href$='.mpg'], a[href$='.mov'], a[href$='.wmv'], a[href$='.rm'] {
background:transparent url(../images/file-type-icons/video.gif) center right no-repeat;
display:inline-block;
padding-right:30px;
line-height:15px;
}
/* Audio links */
a[href$='.wavs'], a[href$='.aif'], a[href$='.mp3'], a[href$='.mid'] {
background:transparent url(../images/file-type-icons/audio.gif) center right no-repeat;
display:inline-block;
padding-right:30px;
line-height:15px;
}

.nofiletype { background:none !important; }