The style declarations contained within this page:
H3 + H4 {color: green;} UL+P {border-top: 3px solid green;} /* lack of whitespace shouldn't matter */ EM + STRONG {color: green;} H3.opener + P {border-top: 3px solid green;}
This text is contained within a paragraph element, and so should affect the adjacency selector; thus:
This paragraph, since it follows a UL element, should have a three-pixel green top border.
Within this paragraph, there is emphasized text which contains strongly emphasized text which should NOT be green, as well as strongly emphasized text which should be green.
This paragraph should have a three-pixel solid green top border.
This paragraph should have no border.