/*-------------------------------------------------------------------------------------*/
/* Hyperlink cues */
/*-------------------------------------------------------------------------------------*/

a[href$='.doc'] { 
	padding-right: 18px;
	background: transparent url(../Images/icon_doc.gif) no-repeat center right;
}
a[href$='.docx'] { 
	padding-right: 18px;
	background: transparent url(../Images/icon_doc.gif) no-repeat center right;
}
a[href$='.xls'] { 
	padding-right: 18px;
	background: transparent url(../Images/icon_xls.gif) no-repeat center right;
}

a[href$='.pdf'] { 
	padding-right: 18px;
	background: transparent url(../Images/icon_pdf.gif) no-repeat center right;
}

/* all A tags whose REL attribute equals pdf */
a[rel='pdf'] { 
	padding-right: 18px;
	background: transparent url(../Images/icon_pdf.gif) no-repeat center right;
}

/*  all A tags whose REL attributes has the letters pdf somewhere mixed in*/
a[rel*='pdf'] { 
	padding-right: 18px;
	background: transparent url(../Images/icon_pdf.gif) no-repeat center right;
}

/* all A tags whose REL attribute contains the value pdf, seperated from other values with a space */
a[rel~='pdf'] { 
	padding-right: 18px;
	background: transparent url(../Images/icon_pdf.gif) no-repeat center right;
}

/* all A tags whose HREF attribute starts with mailto: */
a[href ^="mailto:"] {
	padding-right: 18px;
    background: transparent url(../Images/icon_mailto.gif) no-repeat center right;
   
}

/* all A tags whose CLASS attribute is popup */
a[class ="popup"] {
	padding-right: 18px;
    background: transparent url(../Images/icon_popup.gif) no-repeat center right;
}


a[rel ~='external'] {
	padding-right: 18px;
	background: transparent url(../Images/icon_external.gif) no-repeat center right;
}

/*-------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/

