You can match elements that aren't direct children with the "//" (double forward slash).
This looks through the descendants of the "current context".
For example:
/section//cite
will match all 'cite' elements that are descendants of 'section'. But:
//cite
will match all 'cite' elements in the document.