/* Mimic the accordion javascript file with CSS */
/* that only displays the chosen category's options */

#sidebar-primary li.header ul {
	display: none;
}

#sidebar-primary li.header.open_category ul {
	display: block;
}

