Accordion inside accordion height issue

Accordion inside accordion height issue

Here is my code over at jfiddle:

I'm using nested headers. My issue is with height.  You'll see in sub-header1 and 2.  You have to use the up/down scroll to see all the text.

Here's my java script:
  1. $j=jQuery.noConflict()
  2. $j(document).ready(function() {
  3.     $j( "#subaccordion, #accordion" ).accordion({
  4.       collapsible: true,
  5.       active: false,
  6.         autoHeight: false,
  7.         clearStyle: true
  8.       
  9.     });

  10. });

And i use this little snipet of CSS code:
  1. .ui-accordion .ui-accordion-content{ overflow:visable !important; }


This works totally find on jfiddle.  But on my site, it still doesn't work.


What do you think is going on?

Thank you