Resetting CSS in nested Tabs

Resetting CSS in nested Tabs

Hi, 
I want to have one vertical tab widget in which another tab widget is nested in.
So I tried to create the outer tabs, than reset all CSS in the inside of it and call the tabs function on the inner.


I reset the css by calling the attr() function for style with following content:
  1. /*just a extract, because the whole css would be too much for this post*/
  2. .cssReset td,
  3. .cssReset tfoot,
  4. .cssReset th,
  5. .cssReset thead,
  6. .cssReset time,
  7. .cssReset tr,
  8. .cssReset tt,
  9. .cssReset u,
  10. .cssReset ul,
  11. .cssReset var,
  12. .cssReset video,
  13. .cssReset xmp {
  14.     border: 0;
  15.     margin: 0;
  16.     padding: 0;
  17.     font-size: 100%;
  18. }
So, the inner tabs are still vertical and I can't imagine why. 

Thanks, Daniel