Hi Stefan Baychev,
try this one
/* This will hide the content of the group box by default */
.yourGroupBoxClass .ui-accordion-content
{
display: none;
}
/* This will ensure the first item is visible */
.yourGroupBoxClass:first-child .ui-accordion-content
{
display: block;
}