I'd like to have the Styles Item, Subitem, and Subsubitem indent relative to which group they are located. Here is a concrete example to explain what I mean:
 
CreateDocument[
 {
  Cell["This is a section", "Section"],
  Cell["This is an item in a section", "Item"],
  Cell["This is a Subitem in a section", "Subitem"],
  Cell["This is a Subsubitem in a section", "Subsubitem"],
  Cell["This is a Subsection", "Subsection"],
  Cell["This is an item in a section", "Item"],
  Cell["This is a Subitem in a Subsection", "Subitem"],
  Cell["This is a Subsubitem in a Subsection", "Subsubitem"],
  Cell["This is a Subsubsection", "Subsubsection"],
  Cell["This is an item in a Subsubsection", "Item"],
  Cell["This is a Subitem in a Subsubsection", "Subitem"],
  Cell["This is a Subsubitem in a Subsubsection", "Subsubitem"]}
 ]
Notice that the item-like styles all have the same indentation--the indentation doesn't depend on the indentation of Section, Subsection, Subsubsection...
If I edit the Stylesheet for that document and use:
 
Cell[StyleData["Item"],
 CellMargins->{{Inherited + 20, Inherited}, {Inherited, Inherited}}]
Cell[StyleData["Subitem"],
{{Inherited  + 40, Inherited}, {Inherited, Inherited}}]
Cell[StyleData["Subsubitem"],
CellLabelMargins->{{Inherited  + 60, Inherited}, {Inherited, Inherited}}
]
They are inheriting the left-hand cell margin, but where are they inheriting from?
More to the point, can I make a stylesheet where item-like indentation is relative to the group where the item lives. For example, an Item in a Subsection inherits the margins of the Subsection, an Item in a Subsubsection inherits from Subsubsection.