Adjacent sibling
Expression Studio 3.0
Specifies an adjacent sibling relationship between selector elements.
The adjacent sibling combinator is a plus-sign character (+) that separates two simple selectors. White space is not significant.
A selector of the form "E+F" matches element F when it follows sibling element E in the document tree, ignoring non-element nodes (such as text nodes and comments). Elements E and F must share the same parent and E must immediately precede F. To match the first child of the parent, use the :first-child pseudo-class.
This selector is defined in Cascading Style Sheets (CSS), Level 2, Revision 1 (CSS2.1).