@charset "utf-8";
/* CSS Document */
/* LINK CUES -----*/
/* all A tags whose HREF attribute ends in .pdf */
a[href$='.pdf'] { 
	padding-right: 18px;
	background: transparent url('../images/cue/icon_pdf.gif') no-repeat center right;
}

a[href$='.pdf'][rel ~='external']:hover
{ 
	background-color:#006;
}

a[href$='.pdf'][rel ~='external']
{ 
	padding-right: 38px;
	background: transparent url('../images/cue/icon_pdf_ext.gif') no-repeat center right;
}

a.pdf:focus
{
	background-color:#006;
}

a.pdf { 
	padding-right: 18px;
	background: transparent url('../images/cue/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/cue/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/cue/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/cue/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/cue/icon_mailto.gif') no-repeat center right;
}

/* all A tags whose CLASS attribute is popup */
a.popup{
	padding-right: 18px;
    background: transparent url('../images/cue/icon_popup.gif') no-repeat center right;
}
a[href$='.doc'] { 
	padding-right: 18px;
	background: transparent url('../images/cue/icon_doc.gif') no-repeat center right;
}
a[href$='.xls'] { 
	padding-right: 18px;
	background: transparent url('../images/cue/icon_xls.gif') no-repeat center right;
}
a[href$='.ppt'] { 
	padding-right: 18px;
	background: transparent url('../images/cue/icon_ppt.gif') no-repeat center right;
}
a[href$='.pptx'] { 
	padding-right: 18px;
	background: transparent url('../images/cue/icon_ppt.gif') no-repeat center right;
}

a[href$='.ppsx'] { 
	padding-right: 18px;
	background: transparent url('../images/cue/icon_ppt.gif') no-repeat center right;
}
a[rel ~='external'] {
	padding-right: 15px;
	background: transparent url('../images/cue/icon_external.gif') no-repeat center right;
}

